CASH-1514
CASH-1514 changed cms to arriving between, and put text into span to not get overridden by text-transform: capitalize css property
This commit is contained in:
parent
8fff43c2bc
commit
6587f78dce
1 changed files with 3 additions and 1 deletions
|
|
@ -699,10 +699,12 @@ export default {
|
||||||
: this.ServiceLocationFullAddress.zipCode;
|
: this.ServiceLocationFullAddress.zipCode;
|
||||||
},
|
},
|
||||||
AppointmentWordingText() {
|
AppointmentWordingText() {
|
||||||
return this.getCmsContent("ApptDetailsSnapshotWidget", "BodyText")?.replaceAll(
|
const text = this.getCmsContent("ApptDetailsSnapshotWidget", "BodyText")?.replaceAll(
|
||||||
"{custom:ADDRESS}",
|
"{custom:ADDRESS}",
|
||||||
this.ServiceLocationFullAddressText
|
this.ServiceLocationFullAddressText
|
||||||
);
|
);
|
||||||
|
|
||||||
|
return text?.replace(/\barriving between\b/gi, "<span>arriving between</span>");
|
||||||
},
|
},
|
||||||
isRecalibrationOnOrder() {
|
isRecalibrationOnOrder() {
|
||||||
const order = baseMixin.methods.hasSubmittedOrder()
|
const order = baseMixin.methods.hasSubmittedOrder()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue