diff --git a/src/iss-components/address-questions/address-questions.vue b/src/iss-components/address-questions/address-questions.vue index 96ec7f97..b05d1c94 100644 --- a/src/iss-components/address-questions/address-questions.vue +++ b/src/iss-components/address-questions/address-questions.vue @@ -31,6 +31,17 @@ @keydown.enter.prevent /> +
+
+ +
+
@@ -98,12 +109,14 @@ export default { type: Object, default: () => ({ streetAddress: "", + streetAddress2: "", city: "", state: "", zipCode: "", }), }, validationRules: String, + includeStreetAddress2:false, }, data() { return { diff --git a/src/layouts/policy-holder-details/policy-holder-details.vue b/src/layouts/policy-holder-details/policy-holder-details.vue index e9347e8d..68d9249a 100644 --- a/src/layouts/policy-holder-details/policy-holder-details.vue +++ b/src/layouts/policy-holder-details/policy-holder-details.vue @@ -28,7 +28,7 @@ validationRules="last-name-required" />
- + \ No newline at end of file + + \ No newline at end of file diff --git a/src/store/index.js b/src/store/index.js index 68e643d2..56b11746 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -52,6 +52,7 @@ const getDefaultState = () => { customer: { address: { streetAddress: null, + streetAddress2: null, city: null, state: null, zipCode: null, @@ -668,6 +669,7 @@ export const useMainStore = defineStore({ updatePolicyHolderDetails(customerQuestions) { this.order.customer.address.streetAddress = customerQuestions.addressQuestions.streetAddress; + this.order.customer.address.streetAddress2 = customerQuestions.addressQuestions.streetAddress2; this.order.customer.address.city = customerQuestions.addressQuestions.city; this.order.customer.address.state = customerQuestions.addressQuestions.state; this.order.customer.address.zipCode = customerQuestions.addressQuestions.zipCode;