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 {
|
||||
position: relative;
|
||||
|
||||
.pac-container {
|
||||
:deep(.pac-container) {
|
||||
top: 76px !important; // Height of #streetAddressField
|
||||
left: 0 !important;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -159,7 +159,7 @@ export default {
|
|||
}
|
||||
}
|
||||
},
|
||||
mounted() {
|
||||
beforeMount() {
|
||||
if (this.policyVehicles?.length === 1) {
|
||||
this.selectedVehicleVin = this.policyVehicles[0].vin;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -881,8 +881,8 @@ export const useMainStore = defineStore({
|
|||
zipCode: customer.address?.zipCode
|
||||
},
|
||||
emailAddress: contactInfo.emailAddress,
|
||||
firstName: contactInfo.firstName,
|
||||
lastName: contactInfo.lastName,
|
||||
firstName: contactInfo.firstName || customer.firstName,
|
||||
lastName: contactInfo.lastName || customer.lastName,
|
||||
phoneNumber: contactInfo.phoneNumber,
|
||||
optInSms: contactInfo.requestTextUpdates ?? false
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue