Merge branch 'release/2025.05.22' into nation/CASH-715

This commit is contained in:
CarlNation 2025-05-19 09:45:15 -04:00 committed by GitHub
commit 436bb7c8cc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -192,7 +192,12 @@ export default {
vm.selectedWindshieldOptions.selectedWindshieldReplaceOptions.push( vm.selectedWindshieldOptions.selectedWindshieldReplaceOptions.push(
damageLocationsSelected.SINGLE damageLocationsSelected.SINGLE
); );
return vm.forwardButtonAction(); if (
store.getters.externalParameterState.isExternalParameter &&
store.getters.externalParameterDamage.damageType !== "other"
) {
return vm.forwardButtonAction();
}
} }
baseMixin.methods.ResetExternalParamsAndHideModal(); baseMixin.methods.ResetExternalParamsAndHideModal();
} }