From af2feb8d1be486fb3dce7d4c5fe728309c86a829 Mon Sep 17 00:00:00 2001 From: Bryan Mauger Date: Wed, 18 Oct 2023 17:08:26 -0400 Subject: [PATCH 1/2] Re-set desktop modal footer to sticky rather than fixed at bottom of content. --- src/digital-components/modal/modal.vue | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/digital-components/modal/modal.vue b/src/digital-components/modal/modal.vue index 0fed54f45..67eca497a 100644 --- a/src/digital-components/modal/modal.vue +++ b/src/digital-components/modal/modal.vue @@ -198,10 +198,6 @@ export default { button { margin: 0; } - @include media-breakpoint-up(md) { - position: relative; - background-color: transparent; - } } } &.show .modal-dialog { From 7164dc57f34ebf9ee4952ae06f1b86a30460087a Mon Sep 17 00:00:00 2001 From: CarlNation <32103961+CarlNation@users.noreply.github.com> Date: Thu, 19 Oct 2023 06:46:12 -0400 Subject: [PATCH 2/2] CSR-1390 Routing to correct payment method type --- src/layouts/payment-method/payment-method.vue | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/src/layouts/payment-method/payment-method.vue b/src/layouts/payment-method/payment-method.vue index 731017d18..a29862882 100644 --- a/src/layouts/payment-method/payment-method.vue +++ b/src/layouts/payment-method/payment-method.vue @@ -317,15 +317,7 @@ export default { ); } }, - async ccdPayment() { - this.piaSetup("cc"); - }, - async paypal() { - this.piaSetup("pp"); - }, - async afterpay() { - this.piaSetup("ap"); - }, + async piaSetup(payNowType) { this.$refs.loadingModal.showModal(); @@ -333,7 +325,7 @@ export default { await this.dispatchStoreAction(storeActions.RESET_SAVE_SESSION_PROMISE); await this.dispatchStoreAction( storeActions.SAVE_PAYMENT_METHOD_CHOICE, - this.paymentMethod, + payNowType, false );