From e9d4f738ed014e5e1ea639eb3d2c8fe51cae2947 Mon Sep 17 00:00:00 2001 From: Leah Schumann Date: Mon, 9 May 2022 16:26:58 -0400 Subject: [PATCH] Changed the watch on showServiceZipField so that it sets the service zip to null rather than '' --- src/layouts/address-lookup/address-lookup.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/address-lookup/address-lookup.vue b/src/layouts/address-lookup/address-lookup.vue index 8cde8a949..306217a65 100644 --- a/src/layouts/address-lookup/address-lookup.vue +++ b/src/layouts/address-lookup/address-lookup.vue @@ -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; } }, }