merging Matt's fix at page level
This commit is contained in:
commit
bfed75f7b4
1 changed files with 5 additions and 5 deletions
|
|
@ -103,11 +103,11 @@ export default {
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
set: function (newValue) {
|
set: function (newValue) {
|
||||||
this.streetAddress = newValue.streetAddress;
|
this.streetAddress = newValue.addressQuestions.streetAddress;
|
||||||
this.apartmentNumberOrBusinessName = newValue.apartmentNumberOrBusinessName;
|
this.apartmentNumberOrBusinessName = newValue.addressQuestions.apartmentNumberOrBusinessName;
|
||||||
this.city = newValue.city;
|
this.city = newValue.addressQuestions.city;
|
||||||
this.state = newValue.state;
|
this.state = newValue.addressQuestions.state;
|
||||||
this.zipCode = newValue.zipCode;
|
this.zipCode = newValue.addressQuestions.zipCode;
|
||||||
this.isVehicleProtected = newValue.isVehicleProtected;
|
this.isVehicleProtected = newValue.isVehicleProtected;
|
||||||
this.isZipServiceableMobile = newValue.isZipServiceableMobile;
|
this.isZipServiceableMobile = newValue.isZipServiceableMobile;
|
||||||
this.isZipServiceableInShop = newValue.isZipServiceableInShop;
|
this.isZipServiceableInShop = newValue.isZipServiceableInShop;
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue