missed undo
This commit is contained in:
parent
d053faa132
commit
71f8c2347a
2 changed files with 2 additions and 2 deletions
|
|
@ -372,7 +372,7 @@ export default {
|
|||
};
|
||||
}
|
||||
|
||||
this.mainStore.saveServiceLocation({
|
||||
this.mainStore.updateServiceLocation({
|
||||
state: this.state,
|
||||
zipCode: this.zipCode,
|
||||
zipCodeCtu: this.zipCodeCtu,
|
||||
|
|
|
|||
|
|
@ -1842,7 +1842,7 @@ export const useMainStore = defineStore({
|
|||
this.order.serviceLocation.zipCodeCtu = serviceLocationInfo.zipCodeCtu ?? this.order.serviceLocation.zipCodeCtu;
|
||||
this.order.serviceLocation.appointmentType = serviceLocationInfo.appointmentType ?? this.order.serviceLocation.appointmentType;
|
||||
this.order.serviceLocation.isVehicleProtected = serviceLocationInfo.isVehicleProtected ?? this.order.serviceLocation.isVehicleProtected;
|
||||
this.updateServiceLocationProvider(serviceLocationInfo.provider)
|
||||
this.updateServiceLocationProvider(serviceLocationInfo.provider);
|
||||
this.order.serviceLocation.tpaSearchRadius = serviceLocationInfo.tpaSearchRadius;
|
||||
},
|
||||
updateAppointmentType(appointmentType) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue