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 608ca40 commit 4ff8da3Copy full SHA for 4ff8da3
src/ui/components/lineage/index.tsx
@@ -117,7 +117,8 @@ export const LayoutFlow: React.FC<any> = (graph: any, runId: any) => {
117
initialEdges: layoutedEdges,
118
} = getLayoutedElements(graph.graph.nodes, graph.graph.edges);
119
120
- const [nodes, setNodes, onNodesChange] = useNodesState(layoutedNodes);
+ // eslint-disable-next-line
121
+ const [nodes, _, onNodesChange] = useNodesState(layoutedNodes);
122
const [edges, setEdges, onEdgesChange] = useEdgesState(layoutedEdges);
123
const [selectedNode, setSelectedNode] = useState<any>(null);
124
const [legend, setLegend] = useState(false);
0 commit comments