Skip to content

Commit

Permalink
ui: fix: DAG groups are not visible on UI (#686)
Browse files Browse the repository at this point in the history
  • Loading branch information
yohamta authored Sep 24, 2024
1 parent 4065af3 commit f7cc980
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion ui/src/components/molecules/DAGTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down

0 comments on commit f7cc980

Please sign in to comment.