From a0f93042719676b9a5e7a8fffaf743fe12d542fa Mon Sep 17 00:00:00 2001 From: Jason Wheeler Date: Mon, 5 Jun 2023 15:53:10 -0400 Subject: [PATCH 1/2] Devyn requested they be able to input text on date fields --- .../textbox-question/textbox-question.vue | 24 ------------------- 1 file changed, 24 deletions(-) diff --git a/src/digital-components/textbox-question/textbox-question.vue b/src/digital-components/textbox-question/textbox-question.vue index e13f5c4b..bbbafa9e 100644 --- a/src/digital-components/textbox-question/textbox-question.vue +++ b/src/digital-components/textbox-question/textbox-question.vue @@ -16,7 +16,6 @@ class="form-control" v-model.trim="value" v-maska="mask" - @keydown="preventDateInput" :type="type" :ref="inputId" :id="inputId" @@ -138,17 +137,6 @@ export default { this.$emit("update:modelValue", value); }, - - preventDateInput(evt) { - if (this.type === "date") { - if (/\d/.test(evt.key)) { - evt.stopPropagation(); - evt.preventDefault(); - return false; - } - } - } - }, computed: { questionText() { @@ -203,18 +191,6 @@ export default {