experiment/tanstack #172

Merged
niggl merged 106 commits from experiment/tanstack into dev 2023-04-12 19:31:47 +00:00
Showing only changes of commit 9111ad147c - Show all commits

View File

@ -28,8 +28,13 @@
filterFn: `includesString`, filterFn: `includesString`,
}, },
{ {
accessorKey: "group.name", accessorKey: "group",
header: () => $_('group'), header: () => $_('group'),
cell: (info) => {
const group = info.getValue();
if(group.responseType === "RUNNERORGANIZATION"){return group.name}
return `${group.parentGroup.name} > ${group.name}`
},
filterFn: `includesString`, filterFn: `includesString`,
}, },
{ {