From a8e1bdc68486371aa7795f265e1568b36ac3d918 Mon Sep 17 00:00:00 2001 From: Javier Segarra <jsegarra@verdnatura.es> Date: Mon, 13 Jan 2025 22:55:57 +0100 Subject: [PATCH] revert: refs #7134 change --- src/components/common/VnAccountNumber.vue | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/components/common/VnAccountNumber.vue b/src/components/common/VnAccountNumber.vue index f66684a0f..c4fa78674 100644 --- a/src/components/common/VnAccountNumber.vue +++ b/src/components/common/VnAccountNumber.vue @@ -9,7 +9,7 @@ const $props = defineProps({ }, insertable: { type: Boolean, - default: true, + default: false, }, }); @@ -79,10 +79,5 @@ function accountShortToStandard() { </script> <template> - <QInput - @keydown="handleKeydown" - ref="vnInputRef" - v-model="internalValue" - :maxlength="10" - /> + <QInput @keydown="handleKeydown" ref="vnInputRef" v-model="internalValue" /> </template>