From 6587f78dced3e353608f7613b75bcffe4cfa8191 Mon Sep 17 00:00:00 2001 From: Johnny shultz Date: Fri, 3 Oct 2025 13:41:04 -0400 Subject: [PATCH] CASH-1514 CASH-1514 changed cms to arriving between, and put text into span to not get overridden by text-transform: capitalize css property --- src/layouts/payment-method/payment-method.vue | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue index f1bb25810..b5a0b159b 100644 --- a/src/layouts/payment-method/payment-method.vue +++ b/src/layouts/payment-method/payment-method.vue @@ -699,10 +699,12 @@ export default { : this.ServiceLocationFullAddress.zipCode; }, AppointmentWordingText() { - return this.getCmsContent("ApptDetailsSnapshotWidget", "BodyText")?.replaceAll( + const text = this.getCmsContent("ApptDetailsSnapshotWidget", "BodyText")?.replaceAll( "{custom:ADDRESS}", this.ServiceLocationFullAddressText ); + + return text?.replace(/\barriving between\b/gi, "arriving between"); }, isRecalibrationOnOrder() { const order = baseMixin.methods.hasSubmittedOrder()