From 1798a4c16d2b6037fb7f793e405a92db51b03034 Mon Sep 17 00:00:00 2001 From: Scott Kiener Date: Thu, 14 Nov 2024 09:16:04 -0500 Subject: [PATCH] CSR-2320 | Vehicle page is not locked when changing vehicle This fix is specific to endorsement policies ("was it on school propety?") --- src/layouts/vehicle/vehicle.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/layouts/vehicle/vehicle.vue b/src/layouts/vehicle/vehicle.vue index 5f47a3638..d1cbb30da 100644 --- a/src/layouts/vehicle/vehicle.vue +++ b/src/layouts/vehicle/vehicle.vue @@ -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;