diff --git a/src/layouts/service-location/service-location.vue b/src/layouts/service-location/service-location.vue index 4489aac0c..3d430c720 100644 --- a/src/layouts/service-location/service-location.vue +++ b/src/layouts/service-location/service-location.vue @@ -100,17 +100,18 @@ export default { isVehicleProtected: this.isVehicleProtected, isZipServiceableMobile: this.isZipServiceableMobile, isZipServiceableInShop: this.isZipServiceableInShop, - } + }; }, set: function (newValue) { this.streetAddress = newValue.addressQuestions.streetAddress; - this.apartmentNumberOrBusinessName = newValue.addressQuestions.apartmentNumberOrBusinessName; + this.apartmentNumberOrBusinessName = + newValue.addressQuestions.apartmentNumberOrBusinessName; this.city = newValue.addressQuestions.city; this.state = newValue.addressQuestions.state; this.zipCode = newValue.addressQuestions.zipCode; this.isVehicleProtected = newValue.isVehicleProtected; this.isZipServiceableMobile = newValue.isZipServiceableMobile; - this.isZipServiceableInShop = newValue.isZipServiceableInShop; + this.isZipServiceableInShop = newValue.isZipServiceableInShop; }, }, },