Skip to content

Commit

Permalink
fix(plugins): display correct tooltip (fixes #3342) (#30023)
Browse files Browse the repository at this point in the history
(cherry picked from commit c428108)
  • Loading branch information
jonaschn authored and sadpandajoe committed Sep 6, 2024
1 parent d47430a commit 41e611b
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -130,9 +130,9 @@ function Chord(element, props) {
.text(
d =>
`${nodes[d.source.index]}${nodes[d.target.index]}: ${f(
d.source.value,
)}\n${nodes[d.target.index]}${nodes[d.source.index]}: ${f(
d.target.value,
)}\n${nodes[d.target.index]}${nodes[d.source.index]}: ${f(
d.source.value,
)}`,
);
}
Expand Down

0 comments on commit 41e611b

Please sign in to comment.