fix(InfoTable): style and overflow - #6727
Merged
Merged
Conversation
🦋 Changeset detectedLatest commit: 550409e The changes in this PR will be included in the next version bump. This PR includes changesets to release 3 packages
Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
Codecov Report✅ All modified and coverable lines are covered by tests. Additional details and impacted files@@ Coverage Diff @@
## main #6727 +/- ##
=======================================
Coverage 91.01% 91.02%
=======================================
Files 560 561 +1
Lines 10253 10260 +7
Branches 3692 3717 +25
=======================================
+ Hits 9332 9339 +7
Misses 921 921
... and 2 files with indirect coverage changes Continue to review full report in Codecov by Harness.
🚀 New features to boost your workflow:
|
jsulpis
approved these changes
Jul 30, 2026
philibea
approved these changes
Jul 30, 2026
Open
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
Type
Summarize concisely:
What is expected?
InfoTable.Cell:Text: updated tooltip detection logic to handle overflowing content when children are of type(string | number)[]. Such arrays are now converted to strings for tooltip display. For example:Previously, no tooltip appeared when overflowing since the computed child was
['Ready?', 'Yes!'](or['Ready?', 'No...']). Now, the tooltip correctly displaysReady? Yes!.