Fixing check.
This commit is contained in:
parent
c11a3f5ef2
commit
a5830b5aa5
1 changed files with 1 additions and 1 deletions
|
|
@ -152,7 +152,7 @@ export default {
|
||||||
return this.mainStore.issConfig.isCoverageEnabled;
|
return this.mainStore.issConfig.isCoverageEnabled;
|
||||||
},
|
},
|
||||||
isPolicyVehicleSelected() {
|
isPolicyVehicleSelected() {
|
||||||
return this.mainStore.order.vehicle.policyVehicleId >= 0;
|
return (this.mainStore.order.vehicle.policyVehicleId != null && this.mainStore.order.vehicle.policyVehicleId >= 0);
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods: {
|
methods: {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue