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');
|
||||
},
|
||||
educatorEndorsement() {
|
||||
return useMainStore().order.policy.endorsements?.includes('Educator');
|
||||
return useMainStore().order.policy.endorsements?.includes('Educator') ?? false;
|
||||
},
|
||||
parkingGuardEndorsement() {
|
||||
return useMainStore().order.policy.endorsements?.includes('Parking Guard');
|
||||
return useMainStore().order.policy.endorsements?.includes('Parking Guard') ?? false;
|
||||
}
|
||||
},
|
||||
methods:
|
||||
|
|
|
|||
Loading…
Reference in a new issue