Merge pull request #2474 from Safelite/feature/CASH-353
CASH-353 - Made sure that we are not clearing out the zip code for he…
This commit is contained in:
commit
460aa848f9
1 changed files with 2 additions and 2 deletions
|
|
@ -520,8 +520,8 @@ export default {
|
|||
},
|
||||
showServiceZipField: {
|
||||
handler(newValue) {
|
||||
// If the Service Zip Code field is ever hidden, clear out it's value
|
||||
if (!newValue) {
|
||||
// If the Service Zip Code field is ever hidden and not a heavy truck, clear out it's value
|
||||
if (!newValue && !this.isHeavyTruck) {
|
||||
this.serviceZipCode = null;
|
||||
}
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue