diff --git a/src/layouts/estimate/estimate.vue b/src/layouts/estimate/estimate.vue index e70172bc1..1b16345ce 100644 --- a/src/layouts/estimate/estimate.vue +++ b/src/layouts/estimate/estimate.vue @@ -23,6 +23,13 @@ isRequired validationRules="option-required" :logDisplayedValuesEvent="true" /> + +
diff --git a/src/layouts/license-plate-lookup/license-plate-lookup.vue b/src/layouts/license-plate-lookup/license-plate-lookup.vue index 40eca144b..49d91a337 100644 --- a/src/layouts/license-plate-lookup/license-plate-lookup.vue +++ b/src/layouts/license-plate-lookup/license-plate-lookup.vue @@ -1,90 +1,96 @@ @@ -214,10 +220,10 @@ export default { // If serviceZipCode is not set, then sets the response to the registrationZipValidationResponse. Calls VALIDATE_ZIP if the serviceZipCode is set. resultKey: "serviceZipValidationResponse", promise: this.serviceZipCode - ? this.dispatchStoreAction(storeActions.VALIDATE_ZIP, { - zip: this.serviceZipCode, - }) - : registrationZipValidationResponse, + ? this.dispatchStoreAction(storeActions.VALIDATE_ZIP, { + zip: this.serviceZipCode, + }) + : registrationZipValidationResponse, }, ]; @@ -247,7 +253,7 @@ export default { // Check if the CarId has changed. this.isCarIdDifferent = - vinLookup.data.vehicle.carId !== this.$store.getters.vehicle.carId; + vinLookup.data.vehicle.carId !== this.$store.getters.vehicle.carId; // Handle changing car if ( @@ -359,10 +365,10 @@ export default { }, AlertMatchedDifferentVehicleBody() { return this.getCmsContent("AlertMatchedDifferentVehicleWidget", "BodyText") - .replaceAll("{custom:damage}", getDamageString()) - .replaceAll("{custom:plateLookupYear}", this.customAlertData?.vehicleInfo?.year) - .replaceAll("{custom:plateLookupMake}", this.customAlertData?.vehicleInfo?.make) - .replaceAll("{custom:plateLookupModel}", this.customAlertData?.vehicleInfo?.model); + .replaceAll("{custom:damage}", getDamageString()) + .replaceAll("{custom:plateLookupYear}", this.customAlertData?.vehicleInfo?.year) + .replaceAll("{custom:plateLookupMake}", this.customAlertData?.vehicleInfo?.make) + .replaceAll("{custom:plateLookupModel}", this.customAlertData?.vehicleInfo?.model); }, }, watch: { diff --git a/src/layouts/vin-lookup/vin-lookup.vue b/src/layouts/vin-lookup/vin-lookup.vue index a754ed2a7..dfb254dc9 100644 --- a/src/layouts/vin-lookup/vin-lookup.vue +++ b/src/layouts/vin-lookup/vin-lookup.vue @@ -1,133 +1,133 @@ @@ -300,7 +300,7 @@ export default { // Check if the CarId is different from the lookup vs what is in state currently. this.isCarIdDifferent = - resultMap.vehicleLookupResponse.carId !== this.$store.getters.vehicle.carId; + resultMap.vehicleLookupResponse.carId !== this.$store.getters.vehicle.carId; if ( this.isCarIdDifferent && @@ -400,16 +400,16 @@ export default { getVinFromImage(image) { return new Promise((resolve, reject) => { this.dispatchStoreAction(storeActions.LOOKUP_VIN_BY_IMAGE, image) - .then((response) => { - if (response.data.length > 0) { - resolve(response.data[0]); - } else { - reject("No VINs detected."); - } - }) - .catch(() => { - reject("An error occurred during the lookup."); - }); + .then((response) => { + if (response.data.length > 0) { + resolve(response.data[0]); + } else { + reject("No VINs detected."); + } + }) + .catch(() => { + reject("An error occurred during the lookup."); + }); }); }, resetAlerts() { @@ -432,10 +432,10 @@ export default { }, AlertMatchedDifferentVehicleBody() { return this.getCmsContent("AlertMatchedDifferentVehicleWidget", "BodyText") - .replaceAll("{custom:damage}", getDamageString()) - .replaceAll("{custom:vinlookupYear}", this.customAlertData?.vehicleInfo?.year) - .replaceAll("{custom:vinlookupMake}", this.customAlertData?.vehicleInfo?.make) - .replaceAll("{custom:vinlookupModel}", this.customAlertData?.vehicleInfo?.model); + .replaceAll("{custom:damage}", getDamageString()) + .replaceAll("{custom:vinlookupYear}", this.customAlertData?.vehicleInfo?.year) + .replaceAll("{custom:vinlookupMake}", this.customAlertData?.vehicleInfo?.make) + .replaceAll("{custom:vinlookupModel}", this.customAlertData?.vehicleInfo?.model); }, AlertNonServiceableZipHeader() { return this.getCmsContent("AlertNonServiceableZipWidget", "HeadlineText").replaceAll( diff --git a/src/styles/common-styles.scss b/src/styles/common-styles.scss index d014bdfa3..9c886d30f 100644 --- a/src/styles/common-styles.scss +++ b/src/styles/common-styles.scss @@ -36,10 +36,6 @@ body { overflow: hidden; } - .page-container-grouped-styles { - //@extend .container-fluid, .shadow, .rounded-3, .p-2, .position-relative, .make-tall, .px-5; - } - //Footer modal backdrop adjustments for positioning .modal-backdrop { left: 50%;