Auto stash before cherry pick of "Merge pull request #2599 from Safelite/feature/CASH-926-cart-updates-v1"

This commit is contained in:
Scott Kiener 2025-07-14 09:36:43 -04:00
parent d892181356
commit cfb916d3b6
2 changed files with 9 additions and 3 deletions

View file

@ -543,8 +543,14 @@ export default {
this.updateSupportingItems();
if (this.displayWaitList) {
var gaLabel = "";
const status = this.waitListRequested ? "checked" : "unchecked";
let gaLabel = "";
let status = this.waitListRequested ? "checked" : "unchecked";
if (
this.waitListRequested === null &&
this.$store.state.order.customer.waitListRequested === true
) {
status = "checked";
}
const type = store.getters.isMobileAppointment ? "mobile" : "inshop";
gaLabel = `${status}_${type}`;

View file

@ -133,4 +133,4 @@ caption,
url("@/assets/fonts/Urbanist-BoldItalic.woff2") format("woff");
font-weight: normal;
font-style: normal;
}
}