superset icon indicating copy to clipboard operation
superset copied to clipboard

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

Open jonaschn opened this issue 1 year ago • 0 comments

SUMMARY

Fixes #3342 Display the correct tooltip information for chord charts (source and target values were switched)

BEFORE

image

AFTER

image

TESTING INSTRUCTIONS

Example SQL Dataset:

SELECT 'Alice' AS source, 'Bob' AS target, 5 AS interactions UNION ALL
SELECT 'Alice', 'Charlie', 3 UNION ALL
SELECT 'Bob', 'Charlie', 2 UNION ALL
SELECT 'Charlie', 'David', 1  UNION ALL
SELECT 'Bob', 'David', 4

ADDITIONAL INFORMATION

  • [x] Has associated issue: #3342
  • [ ] Required feature flags:
  • [x] Changes UI
  • [ ] Includes DB Migration (follow approval process in SIP-59)
    • [ ] Migration is atomic, supports rollback & is backwards-compatible
    • [ ] Confirm DB migration upgrade and downgrade tested
    • [ ] Runtime estimates and downtime expectations provided
  • [ ] Introduces new feature or API
  • [ ] Removes existing feature or API

jonaschn avatar Aug 27 '24 10:08 jonaschn