fix(plugins): display correct tooltip (fixes #3342) (#30023)

This commit is contained in:
Jonathan Schneider 2024-08-27 21:48:00 +02:00 committed by GitHub
parent d80f23ed94
commit c428108713
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 2 additions and 2 deletions

View File

@ -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,
)}`,
);
}