Merge pull request #2474 from Safelite/feature/CASH-353

CASH-353 - Made sure that we are not clearing out the zip code for he…
This commit is contained in:
mvalaiyapathi 2025-05-01 10:10:22 -04:00 committed by GitHub
commit 460aa848f9
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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;
}
},