Merge branch 'develop' into feature/Digital/SSR-261
This commit is contained in:
commit
3a18b52640
2 changed files with 3 additions and 24 deletions
|
|
@ -4,7 +4,6 @@
|
||||||
<div class="fade-on-route-transition h-100">
|
<div class="fade-on-route-transition h-100">
|
||||||
<siteHeader cmsWidgetName="SiteHeaderWidget"/>
|
<siteHeader cmsWidgetName="SiteHeaderWidget"/>
|
||||||
<siteSubHeader cmsWidgetName="SiteSubHeaderWidget"/>
|
<siteSubHeader cmsWidgetName="SiteSubHeaderWidget"/>
|
||||||
<div class="body-container">
|
|
||||||
<div class="row mt-4">
|
<div class="row mt-4">
|
||||||
<div class="col">
|
<div class="col">
|
||||||
<textboxQuestion
|
<textboxQuestion
|
||||||
|
|
@ -126,8 +125,7 @@
|
||||||
@ForwardClicked="forwardButtonAction" />
|
@ForwardClicked="forwardButtonAction" />
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
</div>
|
</div>
|
||||||
</Form>
|
</Form>
|
||||||
</template>
|
</template>
|
||||||
|
|
@ -337,23 +335,4 @@
|
||||||
{
|
{
|
||||||
margin-bottom: 0rem !important;
|
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>
|
</style>
|
||||||
|
|
|
||||||
|
|
@ -83,7 +83,7 @@ const getDefaultState = () => {
|
||||||
},
|
},
|
||||||
referralNumber: null,
|
referralNumber: null,
|
||||||
referralDate: null,
|
referralDate: null,
|
||||||
accountNumber: 1,
|
accountNumber: 0,
|
||||||
},
|
},
|
||||||
applicationUser: {
|
applicationUser: {
|
||||||
lastPageVisited: null,
|
lastPageVisited: null,
|
||||||
|
|
@ -362,7 +362,7 @@ export const useMainStore = defineStore({
|
||||||
const carId = vehicle.carId;
|
const carId = vehicle.carId;
|
||||||
const glassArray = damage.glassToReplace;
|
const glassArray = damage.glassToReplace;
|
||||||
const resultsArray = damage.partQuestionAnswers;
|
const resultsArray = damage.partQuestionAnswers;
|
||||||
const zipCode = order.serviceLocation.zipCode;
|
const zipCode = vehicle.registration.zipCode ? vehicle.registration.zipCode : order.customer.address.zipCode;
|
||||||
const vin = vehicle.vin;
|
const vin = vehicle.vin;
|
||||||
|
|
||||||
// create a new array to avoid mutating state
|
// create a new array to avoid mutating state
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue