From 213fa434ccaaf638a551a75a89dee59d1dd280a2 Mon Sep 17 00:00:00 2001 From: Bryan Mauger Date: Thu, 12 Dec 2024 17:07:03 -0500 Subject: [PATCH] WIP format updates. --- src/layouts/payment-method/payment-method.vue | 14 +++++++++++++- .../review-dropdown/review-dropdown.vue | 11 ----------- 2 files changed, 13 insertions(+), 12 deletions(-) diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue index bd698d0c6..477f64798 100644 --- a/src/layouts/payment-method/payment-method.vue +++ b/src/layouts/payment-method/payment-method.vue @@ -14,6 +14,7 @@
@@ -620,7 +621,7 @@ export default { : this.$store.getters.order.serviceLocation?.appointmentType; }, ServiceLocationFullAddressText() { - return `${this.ServiceLocationAddress}${this.ServiceLocationAddress2 ? ", " + this.ServiceLocationAddress2 : ""}, ${this.ServiceLocationCity}, ${this.ServiceLocationState} ${this.ServiceLocationZipCode}`; + return `${this.ServiceLocationAddress.toLowerCase()}${this.ServiceLocationAddress2 ? ", " + this.ServiceLocationAddress2 : ""}, ${this.ServiceLocationCity.toLowerCase()}, ${this.ServiceLocationState} ${this.ServiceLocationZipCode}`; }, ServiceLocationFullAddress() { if (this.AppointmentType === "Mobile") { @@ -853,6 +854,17 @@ export default {