diff --git a/src/common-components/textbox-question/textbox-question.vue b/src/common-components/textbox-question/textbox-question.vue index 84c936e24..eddfd835e 100644 --- a/src/common-components/textbox-question/textbox-question.vue +++ b/src/common-components/textbox-question/textbox-question.vue @@ -129,9 +129,7 @@ export default { // Wait for DOM to update before firing change event to handle validation. await this.$nextTick(); - document.getElementById(this.inputId).dispatchEvent( - new Event('change') - ); + document.getElementById(this.inputId).dispatchEvent(new Event("change")); }) .catch((error) => { console.log(error);