Fixing check.

This commit is contained in:
Jeremy-Z 2026-01-21 12:03:51 -05:00
parent c11a3f5ef2
commit a5830b5aa5

View file

@ -152,7 +152,7 @@ export default {
return this.mainStore.issConfig.isCoverageEnabled;
},
isPolicyVehicleSelected() {
return this.mainStore.order.vehicle.policyVehicleId >= 0;
return (this.mainStore.order.vehicle.policyVehicleId != null && this.mainStore.order.vehicle.policyVehicleId >= 0);
}
},
methods: {