Merge pull request #2890 from Safelite/rlsmerge/2025.10.09-to-develop
Rlsmerge/2025.10.09 to develop
This commit is contained in:
commit
6bacef38cf
2 changed files with 9 additions and 3 deletions
|
|
@ -250,7 +250,8 @@ export default {
|
|||
}
|
||||
}
|
||||
.modal-disclaimer {
|
||||
font-size: 0.75rem;
|
||||
font-size: 0.8125rem;
|
||||
color: #525656;
|
||||
text-align: left;
|
||||
order: 3;
|
||||
margin: 0;
|
||||
|
|
|
|||
|
|
@ -663,10 +663,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, "<span>arriving between</span>");
|
||||
},
|
||||
isRecalibrationOnOrder() {
|
||||
const order = baseMixin.methods.hasSubmittedOrder()
|
||||
|
|
@ -793,14 +795,17 @@ export default {
|
|||
},
|
||||
isRecalPriceRemove() {
|
||||
return (
|
||||
!this.isInsurance &&
|
||||
this.getSettingValue(experimentSettings.RECAL_PRICE_REMOVE)?.toLowerCase() ===
|
||||
"true"
|
||||
"true" &&
|
||||
this.isRecalibrationOnOrder
|
||||
);
|
||||
},
|
||||
isAfterpayBreakoutDisplay() {
|
||||
return (
|
||||
this.showInsuranceCoverageAs !== coverageStatus.PENDING &&
|
||||
!this.isRecalPriceRemove &&
|
||||
this.isPiaEnabled &&
|
||||
this.hasSettingEqualTo(experimentSettings.DISPLAY_AFTERPAY_BREAKOUT_DISPLAY, "true")
|
||||
);
|
||||
},
|
||||
|
|
|
|||
Loading…
Reference in a new issue