This commit is contained in:
Michaela Brydon 2024-05-02 16:08:32 -04:00
commit ef064b5d56

View file

@ -121,8 +121,8 @@
isSmallQuestionLabelText isSmallQuestionLabelText
disableAutoFill /> disableAutoFill />
<div <div
id="welcomeFooter" id="welcomeFooter"
class="row"> class="row">
<alert <alert
v-if="displayInvalidZipAlert" v-if="displayInvalidZipAlert"
ref="alertInvalidZip" ref="alertInvalidZip"
@ -140,7 +140,7 @@ class="row">
</div> </div>
</div> </div>
<!-- Footer image component must have parent (usually container-fluid) <!-- 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 /> <footerImage />
</div> </div>
</Form> </Form>
@ -381,10 +381,7 @@ export default {
} }
}, },
navigateForward() { navigateForward() {
if ( if (this.mainStore.applicationUser.duplicateOrders?.length > 0 ?? false) {
this.mainStore.applicationUser.duplicateOrders?.length > 0
?? false
) {
this.$router.navigate( this.$router.navigate(
this.navigationScenarios.CLICKED_FORWARD_WITH_DUPLICATES, this.navigationScenarios.CLICKED_FORWARD_WITH_DUPLICATES,
this.$route, this.$route,
@ -429,12 +426,10 @@ export default {
damageCause: this.mainStore.order.policy.damageCause, damageCause: this.mainStore.order.policy.damageCause,
damageState: this.mainStore.order.policy.damageState, damageState: this.mainStore.order.policy.damageState,
damageCity: this.mainStore.order.policy.damageCity, damageCity: this.mainStore.order.policy.damageCity,
isDamageGlassOnly: isDamageGlassOnly: this.mainStore.order.policy.isDamageGlassOnly,
this.mainStore.order.policy.isDamageGlassOnly,
phoneNumber: this.mainStore.order.contactInfo.homePhone, phoneNumber: this.mainStore.order.contactInfo.homePhone,
email: this.mainStore.order.customer.emailAddress, email: this.mainStore.order.customer.emailAddress,
isPolicyNumberDisabled: isPolicyNumberDisabled: this.mainStore.order.policy.isPolicyNumberDisabled
this.mainStore.order.policy.isPolicyNumberDisabled
}; };
} }
} }