PR fixes
This commit is contained in:
parent
5e204b51b3
commit
cae54add94
3 changed files with 1 additions and 8 deletions
|
|
@ -270,7 +270,6 @@ export default {
|
|||
// Single VIN found
|
||||
const carFound = carsFound[0].vehicle;
|
||||
|
||||
// Check if vehicle is a non-servicable big truck
|
||||
if (carFound.isBigTruck && !carFound.canSafeliteService) {
|
||||
this.displayNoServiceAlert = true;
|
||||
this.$refs.siteFooter.disableForwardButton();
|
||||
|
|
|
|||
|
|
@ -50,7 +50,7 @@
|
|||
<alert
|
||||
v-if="displayNoServiceAlert"
|
||||
ref="alertNoService"
|
||||
class="mt-5 mb-5"
|
||||
class="my-5"
|
||||
cmsWidgetName="AlertNoServiceWidget"
|
||||
alertClass="alert-danger"
|
||||
:isDismissable="false" />
|
||||
|
|
|
|||
|
|
@ -1990,12 +1990,6 @@ export const useMainStore = defineStore({
|
|||
this.order.vehicle.isBigTruck = vehicle.isBigTruck;
|
||||
this.order.vehicle.canSafeliteService = vehicle.canSafeliteService;
|
||||
|
||||
// if (vehicle.canSafeliteService !== undefined && !vehicle.canSafeliteService) {
|
||||
// this.setBailout(bailoutMessage.HeavyTruckVehicle(vehicle.carId));
|
||||
// } else if (this.isBailout && this.bailoutCode === bailoutCode.HeavyTruckVehicle) {
|
||||
// this.resetBailout();
|
||||
// }
|
||||
|
||||
this.updateSupportingItems(null);
|
||||
this.updateVaps(null);
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue