fix: fix invoiceOut filter
gitea/salix-front/pipeline/pr-master This commit looks good Details

This commit is contained in:
Carlos Satorres 2024-12-03 10:25:33 +01:00
parent 4d6ee25aeb
commit 2afaa48c25
1 changed files with 4 additions and 2 deletions

View File

@ -37,7 +37,7 @@ const columns = computed(() => [
}, },
isId: true, isId: true,
columnFilter: { columnFilter: {
name: 'search', name: 'id',
}, },
}, },
{ {
@ -74,7 +74,9 @@ const columns = computed(() => [
component: 'select', component: 'select',
attrs: { attrs: {
url: 'Clients', url: 'Clients',
fields: ['id', 'name'], fields: ['id', 'socialName'],
optionLabel: 'socialName',
optionValue: 'id',
}, },
columnField: { columnField: {
component: null, component: null,