Changed the watch on showServiceZipField so that it sets the service zip to null rather than ''

This commit is contained in:
Leah Schumann 2022-05-09 16:26:58 -04:00
parent 93605adec0
commit e9d4f738ed

View file

@ -372,7 +372,7 @@ export default {
handler(newValue) {
// if the Service Zip Code field is ever hidden, clear out it's value
if (!newValue) {
this.serviceZipCode = "";
this.serviceZipCode = null;
}
},
}