From cdede63bece319b80476bad691ad354dda6f120c Mon Sep 17 00:00:00 2001 From: Johnny shultz Date: Fri, 11 Jul 2025 14:36:25 -0400 Subject: [PATCH] Merge Conflict CASH-341 to 2025.07.17 --- src/fmg-components/cart/cart.vue | 6 ++++-- src/layouts/schedule/schedule.vue | 15 +++++++++++---- src/styles/common-typography-styles.scss | 2 +- src/styles/ux-variables.scss | 4 ++-- 4 files changed, 18 insertions(+), 9 deletions(-) diff --git a/src/fmg-components/cart/cart.vue b/src/fmg-components/cart/cart.vue index 7d1637a94..6ca1c747d 100644 --- a/src/fmg-components/cart/cart.vue +++ b/src/fmg-components/cart/cart.vue @@ -1309,8 +1309,10 @@ export default { .sub-total, .sales-tax, .amount-due, - .amount-paid { - font-weight: 500; + .amount-paid, + .donation-amount { + font-family: + UrbanistSemibold, AvertaSemibold; /* Okay to remove AvertaSemibold after 2025.06.19 merge/release */ color: $black; } .sub-total { diff --git a/src/layouts/schedule/schedule.vue b/src/layouts/schedule/schedule.vue index 04b9ecb98..21629a6f7 100644 --- a/src/layouts/schedule/schedule.vue +++ b/src/layouts/schedule/schedule.vue @@ -542,10 +542,17 @@ export default { forwardButtonAction() { this.updateSupportingItems(); - if (this.waitListRequested) { - var gaLabel = store.getters.isMobileAppointment - ? "checked_mobile" - : "checked_inshop"; + if (this.displayWaitList) { + 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}`; const currentDate = new Date(); const dateString = this.selectableDatesData.days[0].date; 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 +} diff --git a/src/styles/ux-variables.scss b/src/styles/ux-variables.scss index f90fbe08b..7a18075d4 100644 --- a/src/styles/ux-variables.scss +++ b/src/styles/ux-variables.scss @@ -121,8 +121,8 @@ $body-color: $gray-600; //Fonts $font-family-sans-serif: UrbanistRegular, Arial, Helvetica, sans-serif; -$font-family-monospace: UrbanistRegular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", - monospace; +$font-family-monospace: + UrbanistRegular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; // stylelint-enable value-keyword-case $font-family-base: $font-family-sans-serif; $font-family-code: $font-family-monospace;