You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -156,7 +157,12 @@ export default function SankeyVisualization(props: ExtendedChartReportProps) {
156
157
return<NeoCodeViewerComponentvalue={"No relationship weights found. \nDefine a numeric 'Relationship Property' in the \nreport's advanced settings to view the sankey diagram."}></NeoCodeViewerComponent>
157
158
}
158
159
159
-
return<ResponsiveSankey
160
+
161
+
if(data&&data.nodes&&data.links&&isCyclic(data)){
162
+
return<NeoCodeViewerComponentvalue={"Please be careful with the data you use for this chart as it does not support cyclic dependencies."}></NeoCodeViewerComponent>;
0 commit comments