Changed the watch on showServiceZipField so that it sets the service zip to null rather than ''
This commit is contained in:
parent
93605adec0
commit
e9d4f738ed
1 changed files with 1 additions and 1 deletions
|
|
@ -372,7 +372,7 @@ export default {
|
||||||
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, clear out it's value
|
||||||
if (!newValue) {
|
if (!newValue) {
|
||||||
this.serviceZipCode = "";
|
this.serviceZipCode = null;
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue