From 428eacbc716a047e8b4a65f0930fe6a1333aacd8 Mon Sep 17 00:00:00 2001 From: August Date: Wed, 10 Apr 2024 16:49:27 +0800 Subject: [PATCH] add some comments --- dashboard/pages/dependency_graph.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/dashboard/pages/dependency_graph.tsx b/dashboard/pages/dependency_graph.tsx index c5c7332d70846..11d349725cfc1 100644 --- a/dashboard/pages/dependency_graph.tsx +++ b/dashboard/pages/dependency_graph.tsx @@ -64,6 +64,7 @@ function buildDependencyAsEdges( export default function StreamingGraph() { const { response: relationList } = useFetch(getRelations) + // Since dependentRelations will be deprecated, we need to use getRelationDependencies here to separately obtain the dependency relationship. const { response: relationDeps } = useFetch(getRelationDependencies) const [selectedId, setSelectedId] = useQueryState("id", parseAsInteger)