Skip to content

Commit

Permalink
fix(plugins): display correct tooltip (fixes apache#3342) (apache#30023)
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaschn authored Aug 27, 2024
1 parent d80f23e commit c428108
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 c428108

Please sign in to comment.