Prettified
This commit is contained in:
parent
8c82e8f9f9
commit
f89705c7a1
2 changed files with 3 additions and 3 deletions
|
|
@ -161,7 +161,7 @@ export default {
|
||||||
values: {
|
values: {
|
||||||
state: updatedServiceZipCodeInfo.state,
|
state: updatedServiceZipCodeInfo.state,
|
||||||
zipCode: updatedServiceZipCodeInfo.zipCode,
|
zipCode: updatedServiceZipCodeInfo.zipCode,
|
||||||
isVehicleProtected: updatedServiceZipCodeInfo.isVehicleProtected
|
isVehicleProtected: updatedServiceZipCodeInfo.isVehicleProtected,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
|
|
@ -200,7 +200,7 @@ export default {
|
||||||
this.resetComponent({
|
this.resetComponent({
|
||||||
state: newValue.addressQuestions.state,
|
state: newValue.addressQuestions.state,
|
||||||
zipCode: newValue.addressQuestions.zipCode,
|
zipCode: newValue.addressQuestions.zipCode,
|
||||||
isVehicleProtected: newValue.isVehicleProtected
|
isVehicleProtected: newValue.isVehicleProtected,
|
||||||
});
|
});
|
||||||
},
|
},
|
||||||
deep: true,
|
deep: true,
|
||||||
|
|
|
||||||
|
|
@ -142,7 +142,7 @@ export default {
|
||||||
this.resetAlerts();
|
this.resetAlerts();
|
||||||
|
|
||||||
const zipCodeData = await this.getZipCodeData(this.internalModel.zipCode);
|
const zipCodeData = await this.getZipCodeData(this.internalModel.zipCode);
|
||||||
|
|
||||||
if (!zipCodeData.isValid) {
|
if (!zipCodeData.isValid) {
|
||||||
this.displayInvalidZipAlert = true;
|
this.displayInvalidZipAlert = true;
|
||||||
this.focusOnZipInput();
|
this.focusOnZipInput();
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue