Prettified

This commit is contained in:
Leah Schumann 2023-03-14 13:32:51 -04:00
parent 8c82e8f9f9
commit f89705c7a1
2 changed files with 3 additions and 3 deletions

View file

@ -161,7 +161,7 @@ export default {
values: {
state: updatedServiceZipCodeInfo.state,
zipCode: updatedServiceZipCodeInfo.zipCode,
isVehicleProtected: updatedServiceZipCodeInfo.isVehicleProtected
isVehicleProtected: updatedServiceZipCodeInfo.isVehicleProtected,
},
});
},
@ -200,7 +200,7 @@ export default {
this.resetComponent({
state: newValue.addressQuestions.state,
zipCode: newValue.addressQuestions.zipCode,
isVehicleProtected: newValue.isVehicleProtected
isVehicleProtected: newValue.isVehicleProtected,
});
},
deep: true,

View file

@ -142,7 +142,7 @@ export default {
this.resetAlerts();
const zipCodeData = await this.getZipCodeData(this.internalModel.zipCode);
if (!zipCodeData.isValid) {
this.displayInvalidZipAlert = true;
this.focusOnZipInput();