From 0f1a4d96411ece37adcb901aeb62108d2ccb6076 Mon Sep 17 00:00:00 2001 From: Leah Schumann Date: Wed, 8 Feb 2023 08:22:43 -0500 Subject: [PATCH] Added @input handler which is necessary for modal validation --- src/digital-components/textbox-question/textbox-question.vue | 1 + 1 file changed, 1 insertion(+) diff --git a/src/digital-components/textbox-question/textbox-question.vue b/src/digital-components/textbox-question/textbox-question.vue index bbbbb0bd7..2800e260a 100644 --- a/src/digital-components/textbox-question/textbox-question.vue +++ b/src/digital-components/textbox-question/textbox-question.vue @@ -27,6 +27,7 @@ cornerStyle === 'rounded' ? 'rounded-pill' : '', ]" :validationRules="validationRules" + @input="handleChange" @change="handleChange" @blur="handleChange" :maxlength="maxLength ? maxLength : '999'"