From 5f3c24fb8f10f6810f9c8be3f5eeaf530efa2bef Mon Sep 17 00:00:00 2001 From: Scott Kiener Date: Wed, 16 Jul 2025 13:43:05 -0400 Subject: [PATCH] Fix newly introduced bug - enter key propagating on zip search --- .../service-location/shop-question/shop-question-popup.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/layouts/service-location/shop-question/shop-question-popup.vue b/src/layouts/service-location/shop-question/shop-question-popup.vue index 8da621b86..239632e8b 100644 --- a/src/layouts/service-location/shop-question/shop-question-popup.vue +++ b/src/layouts/service-location/shop-question/shop-question-popup.vue @@ -252,7 +252,8 @@ export default { onModalClosed() { this.resetAlerts(); }, - async onSearchZip() { + async onSearchZip(event) { + event.preventDefault(); this.resetAlerts(); const zipCodeData = await this.getZipCodeData( this.newZipCode,