From ce243fc296cd2c1324446c26d72fbcad81164225 Mon Sep 17 00:00:00 2001 From: Leah Schumann Date: Fri, 10 Feb 2023 10:01:28 -0500 Subject: [PATCH] Added handleOnInput to textbox question --- src/digital-components/textbox-question/textbox-question.vue | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/digital-components/textbox-question/textbox-question.vue b/src/digital-components/textbox-question/textbox-question.vue index 2800e260a..5ffc967e7 100644 --- a/src/digital-components/textbox-question/textbox-question.vue +++ b/src/digital-components/textbox-question/textbox-question.vue @@ -27,7 +27,7 @@ cornerStyle === 'rounded' ? 'rounded-pill' : '', ]" :validationRules="validationRules" - @input="handleChange" + @input="handleOnInput === true ? 'handleChange' : ''" @change="handleChange" @blur="handleChange" :maxlength="maxLength ? maxLength : '999'" @@ -70,6 +70,7 @@ export default { type: String, default: "", }, + handleOnInput: Boolean, validationRules: String, cmsWidgetName: String, maxLength: String,