Merge pull request #974 from Safelite/CSR-1178-fix-zip-code-error
CSR-1178 fix incorrect zip code alert being displayed.
This commit is contained in:
commit
cf02a17bc9
1 changed files with 5 additions and 1 deletions
|
|
@ -364,7 +364,11 @@ 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