CSR-1178 fix incorrect zip code alert being displayed.
This commit is contained in:
parent
563f2eef99
commit
85f19a8bcd
1 changed files with 6 additions and 1 deletions
|
|
@ -364,7 +364,12 @@ export default {
|
||||||
}
|
}
|
||||||
|
|
||||||
// If the Service Zip is NOT serviceable then show an alert
|
// If the Service Zip is NOT serviceable then show an alert
|
||||||
this.displayNonServiceableZipAlert = true;
|
if (zipCodeData.isValid) {
|
||||||
|
this.displayNonServiceableZipAlert = true;
|
||||||
|
} else {
|
||||||
|
this.displayInvalidZipAlert = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
return this.$refs.funnelFooter.removeLoader();
|
return this.$refs.funnelFooter.removeLoader();
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue