From f1ef84cf2102902dc93d8ada5a33c50b18461808 Mon Sep 17 00:00:00 2001 From: Minojhini Valaiyapathi Date: Thu, 1 May 2025 10:03:28 -0400 Subject: [PATCH] CASH-353 - Made sure that we are not clearing out the zip code for heavy truck --- src/layouts/address-lookup/address-lookup.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/layouts/address-lookup/address-lookup.vue b/src/layouts/address-lookup/address-lookup.vue index d0cca48d9..54020b7b0 100644 --- a/src/layouts/address-lookup/address-lookup.vue +++ b/src/layouts/address-lookup/address-lookup.vue @@ -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; } },