CASH-1077
formatting
This commit is contained in:
parent
1d50dfde96
commit
d94f5c03f6
1 changed files with 8 additions and 1 deletions
|
|
@ -262,7 +262,14 @@ export default {
|
||||||
if (this.localZipCode) {
|
if (this.localZipCode) {
|
||||||
this.zipCodeData = await this.getZipCodeData(this.localZipCode, "service-location");
|
this.zipCodeData = await this.getZipCodeData(this.localZipCode, "service-location");
|
||||||
} else {
|
} else {
|
||||||
this.zipCodeData = { containsMilitaryBase: false, isServiceable: false, isValid: false, state: "", zipCode: this.localZipCode, zipCodeCtu: "" };
|
this.zipCodeData = {
|
||||||
|
containsMilitaryBase: false,
|
||||||
|
isServiceable: false,
|
||||||
|
isValid: false,
|
||||||
|
state: "",
|
||||||
|
zipCode: this.localZipCode,
|
||||||
|
zipCodeCtu: "",
|
||||||
|
};
|
||||||
this.isLoading = false;
|
this.isLoading = false;
|
||||||
}
|
}
|
||||||
// Add zipCode to zipCodeData as it does not come back from endpoint
|
// Add zipCode to zipCodeData as it does not come back from endpoint
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue