8144-devToTest_2448 #963

Merged
alexm merged 347 commits from 8144-devToTest_2448 into test 2024-11-19 07:54:42 +00:00
1 changed files with 7 additions and 5 deletions
Showing only changes of commit 68a2ac385f - Show all commits

View File

@ -50,9 +50,9 @@ const columns = computed(() => [
align: 'left',
columnField: {
component: VnImg,
attrs: (id) => {
attrs: ({ row }) => {
return {
id,
id: row.id,
width: '50px',
};
},
@ -102,9 +102,11 @@ const columns = computed(() => [
name: 'typeName',
align: 'left',
component: 'select',
attrs: {
url: 'ItemTypes',
fields: ['id', 'name'],
columnFilter: {
attrs: {
url: 'ItemTypes',
fields: ['name'],
},
},
columnField: {
component: null,