diff --git a/superset-frontend/plugins/legacy-plugin-chart-chord/src/Chord.js b/superset-frontend/plugins/legacy-plugin-chart-chord/src/Chord.js index 2daed05f4..f947e9ff6 100644 --- a/superset-frontend/plugins/legacy-plugin-chart-chord/src/Chord.js +++ b/superset-frontend/plugins/legacy-plugin-chart-chord/src/Chord.js @@ -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, )}`, ); }