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