CASH-1145
formatting
This commit is contained in:
parent
d1fff5162f
commit
94a3fbcc72
1 changed files with 5 additions and 2 deletions
|
|
@ -744,12 +744,15 @@ export default {
|
|||
isForwardActionDisabled() {
|
||||
if (
|
||||
(this.appointmentType === AppointmentTypeStrings.IN_SHOP ||
|
||||
this.appointmentType === AppointmentTypeStrings.DROP_OFF) &&
|
||||
this.appointmentType === AppointmentTypeStrings.DROP_OFF) &&
|
||||
!this.selectedTimeSlotInfo?.timeSlot?.date
|
||||
) {
|
||||
return true;
|
||||
}
|
||||
return this.displayNoShopsAlert || this.appointmentType === AppointmentTypeStrings.IN_SHOP_OR_DROP_OFF;
|
||||
return (
|
||||
this.displayNoShopsAlert ||
|
||||
this.appointmentType === AppointmentTypeStrings.IN_SHOP_OR_DROP_OFF
|
||||
);
|
||||
},
|
||||
additionalButtonData() {
|
||||
return {
|
||||
|
|
|
|||
Loading…
Reference in a new issue