diff --git a/src/layouts/service-location/mobile-location-modal-questions/mobile-location-modal-questions.vue b/src/layouts/service-location/mobile-location-modal-questions/mobile-location-modal-questions.vue
index 586e1c6de..78d1cc672 100644
--- a/src/layouts/service-location/mobile-location-modal-questions/mobile-location-modal-questions.vue
+++ b/src/layouts/service-location/mobile-location-modal-questions/mobile-location-modal-questions.vue
@@ -65,6 +65,7 @@ import { getPricedMobileFeePart } from "@/layouts/service-location/helpers/servi
export default {
name: "mobile-location-modal-questions",
emits: ["update:modelValue", "updated-mobile-fee-part"],
+ emits: ["update:modelValue", "updated-zip-code", "updated-contains-military-base"], // The component emits an event
data() {
return {
internalModel: deepClone(this.modelValue),
@@ -187,6 +188,7 @@ export default {
// Update the page level model
this.$emit("update:modelValue", this.internalModel);
+ this.$emit("updated-contains-military-base", zipCodeData.containsMilitaryBase);
this.closeModal();
}
},
diff --git a/src/layouts/service-location/service-location.vue b/src/layouts/service-location/service-location.vue
index 732b0f0b1..5969ac216 100644
--- a/src/layouts/service-location/service-location.vue
+++ b/src/layouts/service-location/service-location.vue
@@ -10,12 +10,12 @@
:mobileFeePart="mobileFeePart"
@updated-mobile-fee-part="setMobileFeePart"
linkWidgetName="ServiceZipLinkWidget"
- modalWidgetName="ServiceZipModalWidget"
+ modalWidgetName="ServiceZipModalWidget"
@updated-contains-military-base="setContainsMilitaryBase" />
+ modalWidgetName="MobileLocationModalWidget"
+ @updated-contains-military-base="setContainsMilitaryBase" />