CSR-2177 null checking
This commit is contained in:
parent
e06d288a63
commit
900b043361
1 changed files with 1 additions and 1 deletions
|
|
@ -398,7 +398,7 @@ export default {
|
|||
},
|
||||
methods: {
|
||||
isDisabled(options) {
|
||||
if (!options.length || store.getters.payment.insuranceCoverage.isVerified) {
|
||||
if (!options.length || store.getters.payment?.insuranceCoverage?.isVerified) {
|
||||
return true;
|
||||
} else {
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Reference in a new issue