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:
commit
092c7156bb
1 changed files with 1 additions and 0 deletions
|
|
@ -1559,6 +1559,7 @@ export default {
|
|||
}
|
||||
},
|
||||
updateTimeSlot(timeSlotObj) {
|
||||
if (!timeSlotObj?.timeSlot?.date) return;
|
||||
this.selectedTimeSlotInfo = timeSlotObj;
|
||||
if (
|
||||
this.appointmentType !== AppointmentTypeStrings.MOBILE &&
|
||||
|
|
|
|||
Loading…
Reference in a new issue