mirror of
https://github.com/dagu-org/dagu.git
synced 2025-12-28 06:34:22 +00:00
ui: fix: DAG groups are not visible on UI (#686)
This commit is contained in:
parent
4065af3c81
commit
f7cc980239
@ -441,9 +441,10 @@ function DAGTable({ DAGs = [], group = '', refreshFn, searchText, handleSearchTe
|
||||
];
|
||||
}, [DAGs, group]);
|
||||
|
||||
const instance = useReactTable({
|
||||
const instance = useReactTable<DAGRow>({
|
||||
data,
|
||||
columns,
|
||||
getSubRows: (row) =>row.subRows,
|
||||
getCoreRowModel: getCoreRowModel(),
|
||||
getSortedRowModel: getSortedRowModel(),
|
||||
getFilteredRowModel: getFilteredRowModel(),
|
||||
|
||||
Loading…
Reference in New Issue
Block a user