-
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(sqllab): Hover tooltip flashes in SQL Lab #17068
fix(sqllab): Hover tooltip flashes in SQL Lab #17068
Conversation
Codecov Report
@@ Coverage Diff @@
## master #17068 +/- ##
==========================================
- Coverage 76.88% 76.87% -0.02%
==========================================
Files 1031 1031
Lines 55183 55192 +9
Branches 7505 7506 +1
==========================================
+ Hits 42430 42431 +1
- Misses 12501 12509 +8
Partials 252 252
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
superset-frontend/src/components/FilterableTable/FilterableTable.tsx
Outdated
Show resolved
Hide resolved
/testenv up |
@eschutho Ephemeral environment spinning up at http://54.184.78.102:8080. Credentials are |
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.
🏷️ #Hacktoberfest-accepted |
/testenv up |
@eschutho Ephemeral environment spinning up at http://34.217.212.108:8080. Credentials are |
/testenv up FEATURE_ALERT_REPORTS=true |
@rosemarie-chiu can we test other instances of tooltips since this is a global change? Thanks! |
@eschutho Ephemeral environment spinning up at http://34.217.6.22:8080. Credentials are |
@yousoph for testing |
Ephemeral environment shutdown and build artifacts deleted. |
* Changed SQL Lab result column header-style width to max-content * Changed .ant-tooltip-open to block and tooltip placement to topLeft * Moved tooltip style changes to local implementation instead of global
* Changed SQL Lab result column header-style width to max-content * Changed .ant-tooltip-open to block and tooltip placement to topLeft * Moved tooltip style changes to local implementation instead of global (cherry picked from commit 635898a)
SUMMARY
In FilterableTable, changing each Tooltip implementation's display to
block
and the placement to "topLeft" fixed this.BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
BEFORE
AFTER
TESTING INSTRUCTIONS
Hover over the column header of any SQL Lab result query and observe that the tooltip no longer flashes.
ADDITIONAL INFORMATION