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() {
|
isForwardActionDisabled() {
|
||||||
if (
|
if (
|
||||||
(this.appointmentType === AppointmentTypeStrings.IN_SHOP ||
|
(this.appointmentType === AppointmentTypeStrings.IN_SHOP ||
|
||||||
this.appointmentType === AppointmentTypeStrings.DROP_OFF) &&
|
this.appointmentType === AppointmentTypeStrings.DROP_OFF) &&
|
||||||
!this.selectedTimeSlotInfo?.timeSlot?.date
|
!this.selectedTimeSlotInfo?.timeSlot?.date
|
||||||
) {
|
) {
|
||||||
return true;
|
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() {
|
additionalButtonData() {
|
||||||
return {
|
return {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue