From 31334370bbf6bacdcd8038b603ba9540c6d74822 Mon Sep 17 00:00:00 2001 From: Leah Schumann Date: Wed, 8 Feb 2023 08:22:03 -0500 Subject: [PATCH 1/5] Added code to enable / disable the Footer Button --- src/digital-components/modal/modal.vue | 30 ++++++++++++++++++++------ 1 file changed, 23 insertions(+), 7 deletions(-) diff --git a/src/digital-components/modal/modal.vue b/src/digital-components/modal/modal.vue index 89ff1f8ed..e206dd3e3 100644 --- a/src/digital-components/modal/modal.vue +++ b/src/digital-components/modal/modal.vue @@ -32,7 +32,8 @@ ref="buttonMain" suppressLoader :buttonText="footerButtonText" - @click-event="validateAndEmit" /> + @click-event="validateAndEmit" + :class="isFooterButtonDisabled && 'form-test-invalid'" /> @@ -42,6 +43,7 @@