CASH-1221

formatting
This commit is contained in:
Johnny shultz 2025-07-22 13:01:59 -04:00
parent fd9265a269
commit 8636751b7d
3 changed files with 5 additions and 13 deletions

View file

@ -307,11 +307,7 @@ export default {
}, },
set(newSelectedDate) { set(newSelectedDate) {
this.$emit("update:modelValue", newSelectedDate); this.$emit("update:modelValue", newSelectedDate);
this.dispatchStoreAction( this.dispatchStoreAction(this.storeActions.SAVE_WAITLIST_REQUESTED, false, false);
this.storeActions.SAVE_WAITLIST_REQUESTED,
false,
false
);
}, },
}, },
dropOffDurationText() { dropOffDurationText() {

View file

@ -992,12 +992,8 @@ export default {
this.isVehicleProtected = null; this.isVehicleProtected = null;
}, },
resetWaitlist(){ resetWaitlist() {
this.dispatchStoreAction( this.dispatchStoreAction(this.storeActions.SAVE_WAITLIST_REQUESTED, false, false);
this.storeActions.SAVE_WAITLIST_REQUESTED,
false,
false
);
this.waitListRequested = false; this.waitListRequested = false;
}, },
setServiceabilityDetails(serviceabilityDetails) { setServiceabilityDetails(serviceabilityDetails) {

View file

@ -346,11 +346,11 @@ export default {
return this.getCmsContent("WaitListSuccessWidget", "BodyText"); return this.getCmsContent("WaitListSuccessWidget", "BodyText");
}, },
waitListRequested: { waitListRequested: {
get(){ get() {
return this.$store.getters.order.customer?.waitListRequested; return this.$store.getters.order.customer?.waitListRequested;
}, },
set(value) { set(value) {
this.dispatchStoreAction(storeActions.SAVE_WAITLIST_REQUESTED, value) this.dispatchStoreAction(storeActions.SAVE_WAITLIST_REQUESTED, value);
}, },
}, },
isMobileAppointment() { isMobileAppointment() {