diff --git a/src/layouts/schedule/schedule.vue b/src/layouts/schedule/schedule.vue index 7d74b1d67..96a9aaba4 100644 --- a/src/layouts/schedule/schedule.vue +++ b/src/layouts/schedule/schedule.vue @@ -650,6 +650,13 @@ export default { } }, showTimeSlotQuestion() { + if ( + this.selectedDate && + this.selectedDate.includes("mobile") && + !this.isMobileSelected + ) { + this.updateSelectedDate(); + } return this.selectedDate && this.appointmentTypeFromAppointmentTypeQuestion; }, isMobileStaticRecalibrationApplicable() { @@ -1774,6 +1781,9 @@ export default { this.selectedDate = this.getSelectedDate(); this.setDisplayWaitList(); }, + updateSelectedDate() { + this.selectedDate = this.getSelectedDate(); + }, }, watch: { appointmentTypeFromAppointmentTypeQuestion: {