Merge branch 'develop' into feature/Digital/SSR-261

This commit is contained in:
Jeremy Zimmerman 2023-02-21 10:59:15 -05:00
commit 7709a1be64
3 changed files with 25 additions and 6 deletions

View file

@ -109,7 +109,7 @@ export default {
activeVehicleLookupAlertType: null,
vehicleFromLookup: null,
licensePlate: null,
licenseState: null,
licenseState: useMainStore().order.customer.address.state,
displayVinNotFoundAlert: false,
displayMatchedDifferentVehicleAlert: false,
previouslyEnteredCarId: "",
@ -198,7 +198,6 @@ export default {
registrationInfo: {
licensePlate: this.licensePlate,
state: this.licenseState,
zipCode: useMainStore().vehicle.registration.zipCode,
},
},
false

View file

@ -4,6 +4,7 @@
<div class="fade-on-route-transition h-100">
<siteHeader cmsWidgetName="SiteHeaderWidget"/>
<siteSubHeader cmsWidgetName="SiteSubHeaderWidget"/>
<div class="body-container">
<div class="row mt-4">
<div class="col">
<textboxQuestion
@ -125,7 +126,8 @@
@ForwardClicked="forwardButtonAction" />
</div>
</div>
</div>
</div>
</div>
</div>
</Form>
</template>
@ -334,4 +336,23 @@
{
margin-bottom: 0rem !important;
}
.p-2, body .page-container-grouped-styles{
padding:0 !important;
}
.site-header[data-v-0fe86b7b] {
padding: 0.5rem 0;
}
.subheader-primary{
margin-top:0.25rem;
}
.img-fluid{
width:162px;
}
.body-container
{
padding-right: 1.5rem !important;
padding-left: 1.5rem !important;
}
</style>

View file

@ -83,7 +83,7 @@ const getDefaultState = () => {
},
referralNumber: null,
referralDate: null,
accountNumber: 0,
accountNumber: 1,
},
applicationUser: {
lastPageVisited: null,
@ -954,8 +954,7 @@ export const useMainStore = defineStore({
if
(
registrationInfo?.licensePlate !== this.order.vehicle.registration?.licensePlate ||
registrationInfo?.state !== this.order.vehicle.registration?.state ||
registrationInfo?.zipCode !== this.order.vehicle.registration?.zipCode
registrationInfo?.state !== this.order.vehicle.registration?.state
)
{
this.resetRegistrationAndDependencies();