From af02cb3d5711b10cdd133901b7836af2421f1b7f Mon Sep 17 00:00:00 2001 From: Johnny shultz Date: Mon, 17 Mar 2025 11:38:44 -0400 Subject: [PATCH 1/3] CASH-185 CASH-185 fixed issue for value not being persisted upon user navigation --- src/layouts/schedule/schedule.vue | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/layouts/schedule/schedule.vue b/src/layouts/schedule/schedule.vue index 925683073..65ce54a87 100644 --- a/src/layouts/schedule/schedule.vue +++ b/src/layouts/schedule/schedule.vue @@ -512,11 +512,13 @@ export default { false ); - this.dispatchStoreAction( - this.storeActions.SAVE_WAITLIST_REQUESTED, - this.waitListRequested, - false - ); + if(this.waitListRequested !== null && this.waitListRequested !== undefined) { + this.dispatchStoreAction( + this.storeActions.SAVE_WAITLIST_REQUESTED, + this.waitListRequested, + false + ); + } this.$router.navigateWithSaving(this.navigationScenarios.CLICKED_FORWARD, this.$route); }, From 4daa2527b0d0d021e022bcbf0b13fa6a53f65cb3 Mon Sep 17 00:00:00 2001 From: Johnny shultz Date: Mon, 17 Mar 2025 11:44:17 -0400 Subject: [PATCH 2/3] CASH-185 CASH-185 formatting --- src/layouts/schedule/schedule.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/layouts/schedule/schedule.vue b/src/layouts/schedule/schedule.vue index 65ce54a87..0d688e4d9 100644 --- a/src/layouts/schedule/schedule.vue +++ b/src/layouts/schedule/schedule.vue @@ -512,8 +512,8 @@ export default { false ); - if(this.waitListRequested !== null && this.waitListRequested !== undefined) { - this.dispatchStoreAction( + if (this.waitListRequested !== null && this.waitListRequested !== undefined) { + this.dispatchStoreAction( this.storeActions.SAVE_WAITLIST_REQUESTED, this.waitListRequested, false From 7268a9d4dbcb30df1cf85cae1c57d15d7a1ca48a Mon Sep 17 00:00:00 2001 From: Johnny shultz Date: Mon, 17 Mar 2025 12:29:11 -0400 Subject: [PATCH 3/3] CASH-185 Styling fix for CASH-397 defect --- .../time-slot-modal-question/time-slot-modal-question.vue | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/layouts/schedule/time-slot-modal-question/time-slot-modal-question.vue b/src/layouts/schedule/time-slot-modal-question/time-slot-modal-question.vue index c6d08069c..82e11ea41 100644 --- a/src/layouts/schedule/time-slot-modal-question/time-slot-modal-question.vue +++ b/src/layouts/schedule/time-slot-modal-question/time-slot-modal-question.vue @@ -627,8 +627,6 @@ export default { font-size: $h5-font-size; padding: 12px 16px; margin-bottom: -8px; - height: 78px; - width: 326px; .success-text { margin-left: 8px; strong {