return false from computeds
This commit is contained in:
parent
eca335e033
commit
bcbad4725a
1 changed files with 2 additions and 2 deletions
|
|
@ -120,10 +120,10 @@ export default {
|
||||||
return this.getCmsContent('ParkingLotQuestion', 'Answers');
|
return this.getCmsContent('ParkingLotQuestion', 'Answers');
|
||||||
},
|
},
|
||||||
educatorEndorsement() {
|
educatorEndorsement() {
|
||||||
return useMainStore().order.policy.endorsements?.includes('Educator');
|
return useMainStore().order.policy.endorsements?.includes('Educator') ?? false;
|
||||||
},
|
},
|
||||||
parkingGuardEndorsement() {
|
parkingGuardEndorsement() {
|
||||||
return useMainStore().order.policy.endorsements?.includes('Parking Guard');
|
return useMainStore().order.policy.endorsements?.includes('Parking Guard') ?? false;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
methods:
|
methods:
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue