diff --git a/src/common-components/textbox-question/textbox-question.vue b/src/common-components/textbox-question/textbox-question.vue index 40e8fb1e6..0c3bda55a 100644 --- a/src/common-components/textbox-question/textbox-question.vue +++ b/src/common-components/textbox-question/textbox-question.vue @@ -2,10 +2,9 @@
{ - // If the field is valid or have not been validated yet - // lazy - if (!errorMessage.value) { - return { - blur: handleChange, - change: handleChange, - // disable `shouldValidate` to avoid validating on input - input: e => handleChange(e, false), - }; - } - // Aggressive - return { - blur: handleChange, - change: handleChange, - input: handleChange, // only switched this - }; - }); - return { errorMessage, handleBlur, @@ -96,7 +73,6 @@ export default { validate, meta, errors, - validationListeners }; }, computed: {