Merge branch 'develop' into feature/SSR-705
This commit is contained in:
commit
8462ed5f34
3 changed files with 4 additions and 4 deletions
|
|
@ -356,7 +356,7 @@ export default {
|
||||||
#streetAddressField {
|
#streetAddressField {
|
||||||
position: relative;
|
position: relative;
|
||||||
|
|
||||||
.pac-container {
|
:deep(.pac-container) {
|
||||||
top: 76px !important; // Height of #streetAddressField
|
top: 76px !important; // Height of #streetAddressField
|
||||||
left: 0 !important;
|
left: 0 !important;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -159,7 +159,7 @@ export default {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
mounted() {
|
beforeMount() {
|
||||||
if (this.policyVehicles?.length === 1) {
|
if (this.policyVehicles?.length === 1) {
|
||||||
this.selectedVehicleVin = this.policyVehicles[0].vin;
|
this.selectedVehicleVin = this.policyVehicles[0].vin;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -881,8 +881,8 @@ export const useMainStore = defineStore({
|
||||||
zipCode: customer.address?.zipCode
|
zipCode: customer.address?.zipCode
|
||||||
},
|
},
|
||||||
emailAddress: contactInfo.emailAddress,
|
emailAddress: contactInfo.emailAddress,
|
||||||
firstName: contactInfo.firstName,
|
firstName: contactInfo.firstName || customer.firstName,
|
||||||
lastName: contactInfo.lastName,
|
lastName: contactInfo.lastName || customer.lastName,
|
||||||
phoneNumber: contactInfo.phoneNumber,
|
phoneNumber: contactInfo.phoneNumber,
|
||||||
optInSms: contactInfo.requestTextUpdates ?? false
|
optInSms: contactInfo.requestTextUpdates ?? false
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue