fix for unservicable.

This commit is contained in:
Bill Richardson 2026-02-25 15:04:26 -05:00
parent fce0ff3dad
commit 0c3515cef1

View file

@ -449,6 +449,8 @@ export default {
async processMobileZipCodeChange() { async processMobileZipCodeChange() {
showIssLoadingModal(true); showIssLoadingModal(true);
await this.updateMobileZip(); await this.updateMobileZip();
if (!this.mobileZipError) {
const updateMobileZipServiceLocationObj = { const updateMobileZipServiceLocationObj = {
mobileProviderNumber: this.mobileProviderNumber, mobileProviderNumber: this.mobileProviderNumber,
provider: null, provider: null,
@ -457,6 +459,9 @@ export default {
zipCodeCtu: this.zipCodeCtu zipCodeCtu: this.zipCodeCtu
}; };
this.$emit('mobile-zip-updated', updateMobileZipServiceLocationObj); this.$emit('mobile-zip-updated', updateMobileZipServiceLocationObj);
} else {
showIssLoadingModal(false);
}
}, },
setCtuForMobile(val) { setCtuForMobile(val) {
this.zipCodeCtu = val; this.zipCodeCtu = val;