From f2304ab6f03c0a4b4dc33f2e20179f51f828dee2 Mon Sep 17 00:00:00 2001 From: Javier Segarra Date: Mon, 1 Jul 2024 19:05:59 +0200 Subject: [PATCH] feat: myEntries --- src/pages/Entry/MyEntries.vue | 11 ++--------- 1 file changed, 2 insertions(+), 9 deletions(-) diff --git a/src/pages/Entry/MyEntries.vue b/src/pages/Entry/MyEntries.vue index bab8b6cc3..b990211f0 100644 --- a/src/pages/Entry/MyEntries.vue +++ b/src/pages/Entry/MyEntries.vue @@ -8,6 +8,7 @@ import { toDate } from 'src/filters/index'; import RightMenu from 'src/components/common/RightMenu.vue'; import { useQuasar } from 'quasar'; import EntryBuysTableDialog from './EntryBuysTableDialog.vue'; +import VnTable from 'components/VnTable/VnTable.vue'; const stateStore = useStateStore(); const { t } = useI18n(); @@ -43,7 +44,7 @@ const columns = computed(() => [ name: 'landed', isTitle: false, create: true, - cardVisible: true, + cardVisible: false, format: ({ landed }) => toDate(landed), }, { @@ -56,7 +57,6 @@ const columns = computed(() => [ }, { align: 'right', - label: '', name: 'tableActions', computed, actions: [ @@ -77,7 +77,6 @@ const printBuys = (rowId) => { }, }); }; -import VnTable from 'components/VnTable/VnTable.vue';