Fix error.
This commit is contained in:
parent
f3c2abc2aa
commit
735902c4fa
1 changed files with 8 additions and 2 deletions
|
|
@ -29,6 +29,12 @@ export const state = {
|
|||
lastName: null,
|
||||
},
|
||||
},
|
||||
serviceLocation: {
|
||||
zip: null,
|
||||
},
|
||||
customer: {
|
||||
emailAddress: null,
|
||||
},
|
||||
damage: {
|
||||
isRepair: null,
|
||||
numberOfChips: null,
|
||||
|
|
@ -111,10 +117,10 @@ export const mutations = {
|
|||
updateRegistrationLicensePlate(state, registrationLicensePlate){
|
||||
state.order.vehicle.registration.licensePlate = registrationLicensePlate;
|
||||
},
|
||||
updateServiceLocationZip(state, ServiceLocationZip){
|
||||
updateServiceLocationZip(state, serviceLocationZip){
|
||||
state.order.vehicle.serviceLocation.zip = serviceLocationZip;
|
||||
},
|
||||
updateCustomerEmailAddress(state, CustomerEmailAddress){
|
||||
updateCustomerEmailAddress(state, customerEmailAddress){
|
||||
state.order.vehicle.customer.emailAddress = customerEmailAddress;
|
||||
},
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue