hotFix: try to fix myEntries
gitea/salix-front/pipeline/head This commit looks good Details

This commit is contained in:
Alex Moreno 2024-07-24 20:48:05 +02:00
parent f18bc80c0b
commit 3dd6bf8802
1 changed files with 5 additions and 6 deletions

View File

@ -14,14 +14,14 @@ const columns = computed(() => [
align: 'left', align: 'left',
name: 'id', name: 'id',
label: t('customer.extendedList.tableVisibleColumns.id'), label: t('customer.extendedList.tableVisibleColumns.id'),
columnFilter: false,
}, },
{ {
align: 'left', align: 'left',
label: t('shipped'), label: t('shipped'),
name: 'shipped', name: 'shipped',
columnFilter: {
component: 'date', component: 'date',
columnField: {
component: null,
}, },
format: ({ shipped }) => toDate(shipped), format: ({ shipped }) => toDate(shipped),
cardVisible: true, cardVisible: true,
@ -31,9 +31,8 @@ const columns = computed(() => [
label: t('landed'), label: t('landed'),
name: 'from', name: 'from',
cardVisible: false, cardVisible: false,
columnFilter: {
component: 'date', component: 'date',
columnField: {
component: null,
}, },
format: ({ landed }) => toDate(landed), format: ({ landed }) => toDate(landed),
}, },