From dc866298692909d709069f3ccbc70089b69e219f Mon Sep 17 00:00:00 2001 From: Matt Caimi Date: Mon, 13 Feb 2023 09:51:41 -0500 Subject: [PATCH] CSR-1012 | updated service zip link text computed --- .../service-zip-modal-question/service-zip-modal-question.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/layouts/service-location/service-zip-modal-question/service-zip-modal-question.vue b/src/layouts/service-location/service-zip-modal-question/service-zip-modal-question.vue index 8e8beb784..371754477 100644 --- a/src/layouts/service-location/service-zip-modal-question/service-zip-modal-question.vue +++ b/src/layouts/service-location/service-zip-modal-question/service-zip-modal-question.vue @@ -80,7 +80,7 @@ export default { }, computed: { serviceZipLinkText() { - if (this.modelValue.zipCode.length > 0) { + if (this.modelValue.zipCode && this.modelValue.zipCode.length > 0) { return this.modelValue.state + ", " + this.modelValue.zipCode; } return this.getCmsContent(this.linkWidgetName, "BodyText");