From fe2b33dab737b770c29e2ea84b30a2f01f868c8a Mon Sep 17 00:00:00 2001 From: Adam Caouette Date: Mon, 14 Feb 2022 11:24:53 -0500 Subject: [PATCH] CSR-254: pass isDisabled prop down to button main and prevent blocking --- src/common-components/funnel-footer/funnel-footer.vue | 1 + src/ux-components/button-main/button-main.vue | 9 +++++---- 2 files changed, 6 insertions(+), 4 deletions(-) diff --git a/src/common-components/funnel-footer/funnel-footer.vue b/src/common-components/funnel-footer/funnel-footer.vue index 05409f738..af604ed99 100644 --- a/src/common-components/funnel-footer/funnel-footer.vue +++ b/src/common-components/funnel-footer/funnel-footer.vue @@ -24,6 +24,7 @@ sizeInRem="1" :class="isDisabled && 'form-test-invalid'" :aria-disabled="isDisabled" + :isDisabled="isDisabled" @click-event="buttonClick" /> diff --git a/src/ux-components/button-main/button-main.vue b/src/ux-components/button-main/button-main.vue index 975babe17..e14c29f9c 100644 --- a/src/ux-components/button-main/button-main.vue +++ b/src/ux-components/button-main/button-main.vue @@ -1,6 +1,5 @@