CASH-1314: make the null check more specific
This commit is contained in:
parent
092c7156bb
commit
470a72e1ee
1 changed files with 1 additions and 1 deletions
|
|
@ -1559,7 +1559,7 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
updateTimeSlot(timeSlotObj) {
|
updateTimeSlot(timeSlotObj) {
|
||||||
if (!timeSlotObj?.timeSlot?.date) return;
|
if (this.preSelectedDate && !timeSlotObj?.timeSlot?.date) return;
|
||||||
this.selectedTimeSlotInfo = timeSlotObj;
|
this.selectedTimeSlotInfo = timeSlotObj;
|
||||||
if (
|
if (
|
||||||
this.appointmentType !== AppointmentTypeStrings.MOBILE &&
|
this.appointmentType !== AppointmentTypeStrings.MOBILE &&
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue