Merge pull request #2729 from Safelite/feature/CASH-1314-v2

CASH-1314: fix to ensure that null values are not allowed to update timeSlots
This commit is contained in:
AdamCaouetteSafelite 2025-08-05 11:20:38 -04:00 committed by GitHub
commit 092c7156bb
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1559,6 +1559,7 @@ export default {
}
},
updateTimeSlot(timeSlotObj) {
if (!timeSlotObj?.timeSlot?.date) return;
this.selectedTimeSlotInfo = timeSlotObj;
if (
this.appointmentType !== AppointmentTypeStrings.MOBILE &&