From 5383df6946081a63bdd9dc34f251f99cf3d0bf6b Mon Sep 17 00:00:00 2001 From: jorgep Date: Wed, 30 Apr 2025 16:16:27 +0200 Subject: [PATCH] fix: refs #8388 changes --- src/components/VnTable/VnColumn.vue | 4 ++-- src/pages/Entry/EntryPreAccount.vue | 12 +++++++++++- src/pages/InvoiceIn/Card/InvoiceInDueDay.vue | 8 +++----- src/pages/InvoiceIn/Card/InvoiceInVat.vue | 18 +++++++++++------- src/pages/InvoiceIn/locale/en.yml | 1 + src/pages/InvoiceIn/locale/es.yml | 1 + 6 files changed, 29 insertions(+), 15 deletions(-) diff --git a/src/components/VnTable/VnColumn.vue b/src/components/VnTable/VnColumn.vue index ce7e3b1c6..565973e02 100644 --- a/src/components/VnTable/VnColumn.vue +++ b/src/components/VnTable/VnColumn.vue @@ -182,8 +182,8 @@ const col = computed(() => { if ($props.default && !newColumn.component) newColumn.component = $props.default; if (typeof newColumn.component !== 'string') { - newColumn.attrs = { ...newColumn.component.attrs, autofocus: $props.autofocus }; - newColumn.event = { ...newColumn.component.event, ...$props?.eventHandlers }; + newColumn.attrs = { ...newColumn.attrs, autofocus: $props.autofocus }; + newColumn.event = { ...newColumn.event, ...$props?.eventHandlers }; } return newColumn; diff --git a/src/pages/Entry/EntryPreAccount.vue b/src/pages/Entry/EntryPreAccount.vue index 45e871c7a..7b16a7886 100644 --- a/src/pages/Entry/EntryPreAccount.vue +++ b/src/pages/Entry/EntryPreAccount.vue @@ -1,5 +1,13 @@