diff --git a/src/rust/lqosd/src/node_manager/js_build/src/dashlets/top_tree_sankey.js b/src/rust/lqosd/src/node_manager/js_build/src/dashlets/top_tree_sankey.js index a93f621d4..938cdaf3a 100644 --- a/src/rust/lqosd/src/node_manager/js_build/src/dashlets/top_tree_sankey.js +++ b/src/rust/lqosd/src/node_manager/js_build/src/dashlets/top_tree_sankey.js @@ -86,7 +86,7 @@ export class TopTreeSankey extends BaseDashlet { label: "Root", }); - msg.data.forEach((r) => { + msg.data.slice(1).forEach((r) => { let label = { fontSize: 9, color: "#999" @@ -126,4 +126,4 @@ export class TopTreeSankey extends BaseDashlet { this.graph.update(nodes, links); } } -} \ No newline at end of file +} diff --git a/src/rust/lqosd/src/node_manager/ws/ticker/tree_summary.rs b/src/rust/lqosd/src/node_manager/ws/ticker/tree_summary.rs index 29e2c583f..b9e888735 100644 --- a/src/rust/lqosd/src/node_manager/ws/ticker/tree_summary.rs +++ b/src/rust/lqosd/src/node_manager/ws/ticker/tree_summary.rs @@ -28,4 +28,4 @@ pub async fn tree_summary( channels.send(PublishedChannels::TreeSummary, message).await; } } -} \ No newline at end of file +}