Skip to content

Commit

Permalink
Fix top-level sankey display.
Browse files Browse the repository at this point in the history
  • Loading branch information
thebracket committed Sep 20, 2024
1 parent ce32ebd commit 7378654
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down Expand Up @@ -126,4 +126,4 @@ export class TopTreeSankey extends BaseDashlet {
this.graph.update(nodes, links);
}
}
}
}
2 changes: 1 addition & 1 deletion src/rust/lqosd/src/node_manager/ws/ticker/tree_summary.rs
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ pub async fn tree_summary(
channels.send(PublishedChannels::TreeSummary, message).await;
}
}
}
}

0 comments on commit 7378654

Please sign in to comment.