We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c79ec3 commit 502c39dCopy full SHA for 502c39d
src/reactviews/pages/SchemaDesigner/schemaDesignerFindTables.tsx
@@ -46,7 +46,7 @@ export const SchemaDesignerFindTableWidget = ({
46
const getSearchableItems = (): TableNodeItem[] => {
47
const nodes = reactFlow.getNodes() as Array<Node<SchemaDesigner.Table>>;
48
return nodes
49
- .filter((node) => node.data && node.data.name)
+ .filter((node) => !node.hidden && node.data && node.data.name)
50
.map((node) => new TableNodeItem(node));
51
};
52
0 commit comments