From 99d051fe7fcc7ac251ff6f6e2b04cae98ea282ff Mon Sep 17 00:00:00 2001 From: CarlNation Date: Fri, 1 Nov 2024 07:19:36 -0400 Subject: [PATCH] CSR-2304 swap address & address2 places CSR-2304 swap address & address2 places --- src/layouts/confirmation/confirmation.vue | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/layouts/confirmation/confirmation.vue b/src/layouts/confirmation/confirmation.vue index 1d77585b3..f5afe3066 100644 --- a/src/layouts/confirmation/confirmation.vue +++ b/src/layouts/confirmation/confirmation.vue @@ -314,11 +314,7 @@ export default { } }, ServiceLocationFullAddress() { - return `${this.ServiceLocationAddress2 ? this.ServiceLocationAddress2 + "," : ""} ${ - this.ServiceLocationAddress - },
${this.ServiceLocationCity}, ${this.ServiceLocationState} ${ - this.ServiceLocationZipCode - }`; + return `${this.ServiceLocationAddress} ${this.ServiceLocationAddress2 ? "," + this.ServiceLocationAddress2 : ""}
${this.ServiceLocationCity}, ${this.ServiceLocationState} ${this.ServiceLocationZipCode}`; }, ProviderFullAddress() { return `${this.ProviderAddress},
${this.ProviderCity}, ${this.ProviderState} ${this.ProviderZipCode}`;