Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/components/NavigationTree/NavigationTreeNode.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ function renderIcon(type: NavigationTreeNodeType, collapsed: boolean) {
return <IndexIcon height={16} />;
case 'table':
case 'index_table':
case 'system_table':
return <TableIcon height={16} />;
case 'column_table':
return <ColumnTableIcon height={16} />;
Expand Down
1 change: 1 addition & 0 deletions src/components/NavigationTree/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
| 'index_table'
| 'index'
| 'stream'
| 'system_table'
| 'table'
| 'topic'
| 'transfer'
Expand Down Expand Up @@ -54,7 +55,7 @@
'loading' | 'loaded' | 'error' | 'children'
>;

export interface NavigationTreeProps<D = any, M = any> {

Check warning on line 58 in src/components/NavigationTree/types.ts

View workflow job for this annotation

GitHub Actions / Verify Files

Unexpected any. Specify a different type

Check warning on line 58 in src/components/NavigationTree/types.ts

View workflow job for this annotation

GitHub Actions / Verify Files

Unexpected any. Specify a different type
rootState: NavigationTreeNodePartialState;
fetchPath: (path: string) => Promise<NavigationTreeDataItem<M>[]>;
onActionsOpenToggle?: (args: {
Expand Down
Loading