diff --git a/src/layouts/vehicle-damage/windshield-options/windshield-options.vue b/src/layouts/vehicle-damage/windshield-options/windshield-options.vue index db6569709..e407b33a9 100644 --- a/src/layouts/vehicle-damage/windshield-options/windshield-options.vue +++ b/src/layouts/vehicle-damage/windshield-options/windshield-options.vue @@ -88,8 +88,7 @@ export default ({ isWindshieldDamageLocation() { return this.selectedDamageLocations.some(selectedDamages => { - const categoryAndGlass = selectedDamages.split('-'); //ie: "Suv-Windshield" Splits the answers into [0]"Suv" [1]"Windshield" - return Boolean(categoryAndGlass[1].toUpperCase() === "WINDSHIELD"); + return Boolean(selectedDamages.toUpperCase() === "WINDSHIELD"); }); }, isRepairOptionSelected(){