diff --git a/src/layouts/address-lookup/address-lookup.vue b/src/layouts/address-lookup/address-lookup.vue index a1e03d07..b4af4dc2 100644 --- a/src/layouts/address-lookup/address-lookup.vue +++ b/src/layouts/address-lookup/address-lookup.vue @@ -390,14 +390,14 @@ export default { return this.getCmsContent( "AlertMatchedDifferentVehicleWidget", "HeadlineText" - ).replaceAll("{custom:glassText}", getDamageString()); + ).replaceAll("{custom:damage}", getDamageString()); }, AlertMatchedDifferentVehicleBody() { const vinYmmFound = `${this.customAlertData?.vehicleInfo?.year} ${this.customAlertData?.vehicleInfo?.make} ${this.customAlertData?.vehicleInfo?.model}`; const vinYmmExpected = `${this.mainStore.order.vehicle.year} ${this.mainStore.order.vehicle.make} ${this.mainStore.order.vehicle.model}`; return this.getCmsContent("AlertMatchedDifferentVehicleWidget", "BodyText") - .replaceAll("{custom:glassText}", getDamageString()) + .replaceAll("{custom:damage}", getDamageString()) .replaceAll("{custom:vinYmmFound}", vinYmmFound) .replaceAll("{custom:vinYmmExpected}", vinYmmExpected); }, diff --git a/src/layouts/address-vehicles/address-vehicles.vue b/src/layouts/address-vehicles/address-vehicles.vue new file mode 100644 index 00000000..d8e7e990 --- /dev/null +++ b/src/layouts/address-vehicles/address-vehicles.vue @@ -0,0 +1,89 @@ + + diff --git a/src/router/router-constants/issPage-values.js b/src/router/router-constants/issPage-values.js index c8200c6a..d9ac70c4 100644 --- a/src/router/router-constants/issPage-values.js +++ b/src/router/router-constants/issPage-values.js @@ -7,6 +7,7 @@ export const issPageValues = { VEHICLE_DAMAGE: "vehicle-damage", VEHICLE_LOOKUP: "vehicle-lookup", ADDRESS_LOOKUP: "address-lookup", + ADDRESS_VEHICLES: "address-vehicles", LICENSE_PLATE_LOOKUP: "license-plate-lookup", VIN_LOOKUP: "vin-lookup", VEHICLE_PARTS: "vehicle-parts",