This commit is contained in:
CarlNation 2026-02-11 12:02:22 -05:00
parent 4980d77403
commit 5d29f077a3
2 changed files with 7 additions and 6 deletions

View file

@ -185,7 +185,10 @@ export default {
const selectedGlassToReplace = const selectedGlassToReplace =
resultMap.damageOptions.windshieldOptions.availableReplacementOptions; resultMap.damageOptions.windshieldOptions.availableReplacementOptions;
if (selectedGlassToReplace == damageLocationsSelected.SINGLE && store.getters.externalParameterDamage.damageType) { if (
selectedGlassToReplace == damageLocationsSelected.SINGLE &&
store.getters.externalParameterDamage.damageType
) {
vm.selectedWindshieldOptions.selectedWindshieldReplaceOptions.push( vm.selectedWindshieldOptions.selectedWindshieldReplaceOptions.push(
damageLocationsSelected.SINGLE damageLocationsSelected.SINGLE
); );
@ -253,7 +256,7 @@ export default {
if (store.getters.vehicle.carId) { if (store.getters.vehicle.carId) {
return true; return true;
} }
debugLog('**** Vehicle Page Prereq invalid ****'); debugLog("**** Vehicle Page Prereq invalid ****");
debugLog("store.getters.vehicle.carId:", store.getters.vehicle?.carId, true); debugLog("store.getters.vehicle.carId:", store.getters.vehicle?.carId, true);
return false; return false;
}, },

View file

@ -255,12 +255,10 @@ export default {
if (store.getters.externalParameterState?.qsStash) { if (store.getters.externalParameterState?.qsStash) {
currentPageName += `${store.getters.externalParameterState.qsStash}`; currentPageName += `${store.getters.externalParameterState.qsStash}`;
} }
} } else {
else {
currentPageName += `${window.location.search}`; currentPageName += `${window.location.search}`;
} }
} } else {
else {
if (window.location.search) { if (window.location.search) {
currentPageName += `${window.location.search}`; currentPageName += `${window.location.search}`;
} }