-
Notifications
You must be signed in to change notification settings - Fork 14.4k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix(plugins): display correct tooltip (fixes #3342) #30023
Conversation
@@ -130,9 +130,9 @@ function Chord(element, props) { | |||
.text( | |||
d => | |||
`${nodes[d.source.index]} → ${nodes[d.target.index]}: ${f( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The diff looks a bit misleading.
I simply swapped d.source.value
and d.target.value
(line 133 and 135)
NEVERMIND. You're right, that is a confusing diff... I see what you did more clearly now. LGTM :) |
@rusackas Thanks for merging. When do you expect to release this change? |
SUMMARY
Fixes #3342
Display the correct tooltip information for chord charts (source and target values were switched)
BEFORE
AFTER
TESTING INSTRUCTIONS
Example SQL Dataset:
ADDITIONAL INFORMATION