Merge pull request #2890 from Safelite/rlsmerge/2025.10.09-to-develop

Rlsmerge/2025.10.09 to develop
This commit is contained in:
AdamCaouetteSafelite 2025-10-14 10:47:27 -04:00 committed by GitHub
commit 6bacef38cf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 3 deletions

View file

@ -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;

View file

@ -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")
);
},