Merging
This commit is contained in:
commit
ef064b5d56
1 changed files with 6 additions and 11 deletions
|
|
@ -121,8 +121,8 @@
|
|||
isSmallQuestionLabelText
|
||||
disableAutoFill />
|
||||
<div
|
||||
id="welcomeFooter"
|
||||
class="row">
|
||||
id="welcomeFooter"
|
||||
class="row">
|
||||
<alert
|
||||
v-if="displayInvalidZipAlert"
|
||||
ref="alertInvalidZip"
|
||||
|
|
@ -140,7 +140,7 @@ class="row">
|
|||
</div>
|
||||
</div>
|
||||
<!-- Footer image component must have parent (usually container-fluid)
|
||||
set to display: flex and height 100dvh or height 100% -->
|
||||
set to display: flex and height 100dvh or height 100% -->
|
||||
<footerImage />
|
||||
</div>
|
||||
</Form>
|
||||
|
|
@ -381,10 +381,7 @@ export default {
|
|||
}
|
||||
},
|
||||
navigateForward() {
|
||||
if (
|
||||
this.mainStore.applicationUser.duplicateOrders?.length > 0
|
||||
?? false
|
||||
) {
|
||||
if (this.mainStore.applicationUser.duplicateOrders?.length > 0 ?? false) {
|
||||
this.$router.navigate(
|
||||
this.navigationScenarios.CLICKED_FORWARD_WITH_DUPLICATES,
|
||||
this.$route,
|
||||
|
|
@ -429,12 +426,10 @@ export default {
|
|||
damageCause: this.mainStore.order.policy.damageCause,
|
||||
damageState: this.mainStore.order.policy.damageState,
|
||||
damageCity: this.mainStore.order.policy.damageCity,
|
||||
isDamageGlassOnly:
|
||||
this.mainStore.order.policy.isDamageGlassOnly,
|
||||
isDamageGlassOnly: this.mainStore.order.policy.isDamageGlassOnly,
|
||||
phoneNumber: this.mainStore.order.contactInfo.homePhone,
|
||||
email: this.mainStore.order.customer.emailAddress,
|
||||
isPolicyNumberDisabled:
|
||||
this.mainStore.order.policy.isPolicyNumberDisabled
|
||||
isPolicyNumberDisabled: this.mainStore.order.policy.isPolicyNumberDisabled
|
||||
};
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue