From cfb916d3b640a46cc0e8048e8e9528cb4f9f0d97 Mon Sep 17 00:00:00 2001 From: Scott Kiener Date: Mon, 14 Jul 2025 09:36:43 -0400 Subject: [PATCH] Auto stash before cherry pick of "Merge pull request #2599 from Safelite/feature/CASH-926-cart-updates-v1" --- src/layouts/schedule/schedule.vue | 10 ++++++++-- src/styles/common-typography-styles.scss | 2 +- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/src/layouts/schedule/schedule.vue b/src/layouts/schedule/schedule.vue index 8c548a906..21629a6f7 100644 --- a/src/layouts/schedule/schedule.vue +++ b/src/layouts/schedule/schedule.vue @@ -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}`; diff --git a/src/styles/common-typography-styles.scss b/src/styles/common-typography-styles.scss index f5f306517..e1a138031 100644 --- a/src/styles/common-typography-styles.scss +++ b/src/styles/common-typography-styles.scss @@ -133,4 +133,4 @@ caption, url("@/assets/fonts/Urbanist-BoldItalic.woff2") format("woff"); font-weight: normal; font-style: normal; -} \ No newline at end of file +}