Merge pull request #2111 from Safelite/feature/CSR-2320

CSR-2320 | Vehicle page is not locked when changing vehicle
This commit is contained in:
scottkiener 2024-11-14 10:00:40 -05:00 committed by GitHub
commit 4529b8eb12
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -398,7 +398,8 @@ export default {
},
methods: {
isDisabled(options) {
if (!options.length || store.getters.payment?.insuranceCoverage?.isVerified) {
if (!options.length || store.getters.payment?.insuranceCoverage?.isVerified || (store.getters.order.payment?.isInsurance &&
getFunnelCookie().HasDelayedClaimRegistration)) {
return true;
} else {
return false;