CASH-1221
formatting
This commit is contained in:
parent
fd9265a269
commit
8636751b7d
3 changed files with 5 additions and 13 deletions
|
|
@ -307,11 +307,7 @@ export default {
|
|||
},
|
||||
set(newSelectedDate) {
|
||||
this.$emit("update:modelValue", newSelectedDate);
|
||||
this.dispatchStoreAction(
|
||||
this.storeActions.SAVE_WAITLIST_REQUESTED,
|
||||
false,
|
||||
false
|
||||
);
|
||||
this.dispatchStoreAction(this.storeActions.SAVE_WAITLIST_REQUESTED, false, false);
|
||||
},
|
||||
},
|
||||
dropOffDurationText() {
|
||||
|
|
|
|||
|
|
@ -992,12 +992,8 @@ export default {
|
|||
|
||||
this.isVehicleProtected = null;
|
||||
},
|
||||
resetWaitlist(){
|
||||
this.dispatchStoreAction(
|
||||
this.storeActions.SAVE_WAITLIST_REQUESTED,
|
||||
false,
|
||||
false
|
||||
);
|
||||
resetWaitlist() {
|
||||
this.dispatchStoreAction(this.storeActions.SAVE_WAITLIST_REQUESTED, false, false);
|
||||
this.waitListRequested = false;
|
||||
},
|
||||
setServiceabilityDetails(serviceabilityDetails) {
|
||||
|
|
|
|||
|
|
@ -346,11 +346,11 @@ export default {
|
|||
return this.getCmsContent("WaitListSuccessWidget", "BodyText");
|
||||
},
|
||||
waitListRequested: {
|
||||
get(){
|
||||
get() {
|
||||
return this.$store.getters.order.customer?.waitListRequested;
|
||||
},
|
||||
set(value) {
|
||||
this.dispatchStoreAction(storeActions.SAVE_WAITLIST_REQUESTED, value)
|
||||
this.dispatchStoreAction(storeActions.SAVE_WAITLIST_REQUESTED, value);
|
||||
},
|
||||
},
|
||||
isMobileAppointment() {
|
||||
|
|
|
|||
Loading…
Reference in a new issue