Merge pull request #2728 from Safelite/feature/CASH-1246
CASH-1246 prevent mobile supplemental info when there are no timeslots
This commit is contained in:
commit
29c16391a3
1 changed files with 2 additions and 1 deletions
|
|
@ -191,7 +191,8 @@ export default {
|
|||
this.selectedDate == null ||
|
||||
this.appointmentType === AppointmentTypeStrings.IN_SHOP_OR_DROP_OFF ||
|
||||
this.appointmentType === AppointmentTypeStrings.IN_SHOP ||
|
||||
this.appointmentType === AppointmentTypeStrings.DROP_OFF
|
||||
this.appointmentType === AppointmentTypeStrings.DROP_OFF ||
|
||||
!this.availableTimeSlots
|
||||
) {
|
||||
if (!this.selectedAnswerForTimeSlots && !this.selectedAnswerForDropOffOrInshop) {
|
||||
this.autoSelectTimeSlotIfOnlyOneIsAvailable();
|
||||
|
|
|
|||
Loading…
Reference in a new issue