From 5643b82d0685d552e4b6c690cccf84e5faac726b Mon Sep 17 00:00:00 2001 From: Leah Schumann Date: Thu, 16 Feb 2023 07:44:42 -0500 Subject: [PATCH] Fixed issue where the alert was not being removed when changing the service zip code --- .../service-zip-modal-question.vue | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/src/layouts/service-location/service-zip-modal-question/service-zip-modal-question.vue b/src/layouts/service-location/service-zip-modal-question/service-zip-modal-question.vue index 27e3b91a6..7abfb3c3b 100644 --- a/src/layouts/service-location/service-zip-modal-question/service-zip-modal-question.vue +++ b/src/layouts/service-location/service-zip-modal-question/service-zip-modal-question.vue @@ -136,8 +136,10 @@ export default { }, }, watch: { - serviceZipCodeInput() { - this.resetsOnZipInput(); + "internalModel.zipCode": { + handler() { + this.resetsOnZipInput(); + } }, modelValue(newValue) { this.internalModel = this.copyModel(newValue);