Merge pull request #2673 from Safelite/feature/CASH-1145

CASH-1145
This commit is contained in:
Johnny Shultz 2025-07-21 16:28:24 -04:00 committed by GitHub
commit 2d045f2192
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -742,7 +742,17 @@ export default {
return store.getters.order.policy.isNoComp;
},
isForwardActionDisabled() {
return this.displayNoShopsAlert;
if (
(this.appointmentType === AppointmentTypeStrings.IN_SHOP ||
this.appointmentType === AppointmentTypeStrings.DROP_OFF) &&
!this.selectedTimeSlotInfo?.timeSlot?.date
) {
return true;
}
return (
this.displayNoShopsAlert ||
this.appointmentType === AppointmentTypeStrings.IN_SHOP_OR_DROP_OFF
);
},
additionalButtonData() {
return {