diff --git a/src/layouts/vehicle-parts/vehicle-parts.vue b/src/layouts/vehicle-parts/vehicle-parts.vue index b8e773d30..6965635b7 100644 --- a/src/layouts/vehicle-parts/vehicle-parts.vue +++ b/src/layouts/vehicle-parts/vehicle-parts.vue @@ -198,6 +198,12 @@ export default { false ); + this.dispatchStoreAction( + this.storeActions.SAVE_IS_OEM_GLASS_SELECTED, + false, + false + ); + // Navigate to the next page this.navigateForward(matchedParts); }, diff --git a/src/store/index.js b/src/store/index.js index 8faf39f73..15c69f483 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -344,6 +344,10 @@ export const mutations = { state.order.isRecalAckOptIn = isRecalAckOptIn; }, updateIsOemGlassSelected(state, isOemGlassSelected) { + console.log( + "Mutation::::::::::::::::::::::::::::::::::::::: updateIsOemGlassSelected:", + isOemGlassSelected + ); state.order.damage.installOemGlass = isOemGlassSelected; }, updateIsMSRFeeApplicable(state, isMSRFeeApplicable) {