Fixed issue where the alert was not being removed when changing the service zip code

This commit is contained in:
Leah Schumann 2023-02-16 07:44:42 -05:00
parent 21517e45a7
commit 5643b82d06

View file

@ -136,8 +136,10 @@ export default {
},
},
watch: {
serviceZipCodeInput() {
this.resetsOnZipInput();
"internalModel.zipCode": {
handler() {
this.resetsOnZipInput();
}
},
modelValue(newValue) {
this.internalModel = this.copyModel(newValue);