Merge branch 'release/2025.10.16' into rlsmerge/2025.10.16-to-2025.10.23

This commit is contained in:
CarlNation 2025-10-20 11:27:52 -04:00
commit 47908f4ff4
3 changed files with 13 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

@ -669,10 +669,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()
@ -799,14 +801,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")
);
},

View file

@ -509,8 +509,12 @@ export default {
// this.availableTimeSlots only returns mobile/inshop slots so we know
// the only available slot is not dropOFf
this.selectedAnswerForTimeSlots = this.availableTimeSlots[0].value;
// emit up to parent that the time slot has been selected (when mobile or inshop)
this.timeSlotSelectionChanged(this.availableTimeSlots[0].value);
} else {
this.selectedAnswerForDropOffOrInshop = this.answersForDropOffQuestion[0].value;
// emit up to parent that the time slot has been selected (when only dropoff)
this.dropOffSelectionChanged(this.answersForDropOffQuestion[0].value);
}
}
},