File tree Expand file tree Collapse file tree
openmetadata-ui/src/main/resources/ui/src/components/OntologyExplorer Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -103,7 +103,7 @@ const OntologyExplorer: React.FC<OntologyExplorerProps> = ({
103103 expandedTermIds,
104104 rdfEnabled,
105105 graphDataToShow,
106- combinedGraphData ,
106+ filteredGraphData ,
107107 hierarchyGraphData,
108108 hierarchyBakedPositions,
109109 glossaryColorMap,
@@ -490,9 +490,9 @@ const OntologyExplorer: React.FC<OntologyExplorerProps> = ({
490490 ontologyExplorerRelationsSlot = {
491491 isDataAssetLikeNode ( selectedNode ) ? undefined : (
492492 < OntologyNodeRelationsContent
493- edges = { combinedGraphData ?. edges ?? [ ] }
493+ edges = { filteredGraphData ?. edges ?? [ ] }
494494 node = { selectedNode }
495- nodes = { combinedGraphData ?. nodes ?? [ ] }
495+ nodes = { filteredGraphData ?. nodes ?? [ ] }
496496 relationTypes = { relationTypes }
497497 />
498498 )
You can’t perform that action at this time.
0 commit comments