From 86b6408be3fc403b02a1b60e6bdbb85a428ee09b Mon Sep 17 00:00:00 2001 From: bmauger Date: Mon, 2 May 2022 10:50:43 -0400 Subject: [PATCH] Update validation to work on submit. --- .../textbox-question/textbox-question.vue | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/common-components/textbox-question/textbox-question.vue b/src/common-components/textbox-question/textbox-question.vue index 5fba4c165..c5f3ae6e2 100644 --- a/src/common-components/textbox-question/textbox-question.vue +++ b/src/common-components/textbox-question/textbox-question.vue @@ -15,7 +15,7 @@ autocomplete="off" :class="[hasIcon ? 'has-icon' : '', iconRight ? 'icon-right' : '']" :validationRules="validationRules" - @input="handleChange" + @change="handleChange" @blur="handleBlur" />
{{ errorMessage }} @@ -102,11 +102,6 @@ export default { } } }, - watch: { - value(newValue) { - this.handleChange(newValue); - } - } };