Merge branch 'release/2025.09.25' into feature/bugfix/CASH-1499-test
This commit is contained in:
commit
bac7c28409
1 changed files with 9 additions and 1 deletions
|
|
@ -650,7 +650,15 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
showTimeSlotQuestion() {
|
showTimeSlotQuestion() {
|
||||||
return this.selectedDate && this.appointmentTypeFromAppointmentTypeQuestion;
|
var selectedDate = this.selectedDate;
|
||||||
|
if (
|
||||||
|
this.selectedDate &&
|
||||||
|
this.selectedDate.includes("mobile") &&
|
||||||
|
!this.isMobileSelected
|
||||||
|
) {
|
||||||
|
selectedDate = this.getSelectedDate();
|
||||||
|
}
|
||||||
|
return selectedDate && this.appointmentTypeFromAppointmentTypeQuestion;
|
||||||
},
|
},
|
||||||
isMobileStaticRecalibrationApplicable() {
|
isMobileStaticRecalibrationApplicable() {
|
||||||
return (
|
return (
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue