-
Notifications
You must be signed in to change notification settings - Fork 14.1k
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: Add visibility to box for viewing menu items #12153
Conversation
Codecov Report
@@ Coverage Diff @@
## master #12153 +/- ##
==========================================
+ Coverage 65.77% 67.09% +1.32%
==========================================
Files 1002 1002
Lines 49230 49231 +1
Branches 5000 4957 -43
==========================================
+ Hits 32379 33032 +653
+ Misses 16699 16076 -623
+ Partials 152 123 -29
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
…into hotfix/box-visibility
@kkucharc This changes something you touched just a couple weeks ago... could you quickly verify this doesn't break the changes you made? I think it was around the Filter Box "Apply" scrolling. |
thanks for the fix! i can't fully test it due to this error, not sure rebasing will help? not seeing this error elsewhere @maloun96 |
@junlincc do you have |
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.
I just added my comment, but maybe it's better to solve this issue and find another solution for Region Filter.
@@ -23,7 +23,7 @@ | |||
background-color: @lightest; | |||
position: relative; | |||
padding: 16px; | |||
overflow-y: auto; | |||
overflow-y: visible; |
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.
Unfortunately this change will affect Region Filter
:
overflow-y: visible
(now):
I changed scroll solution back here but I believe there must be some better solution here.
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.
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.
@kkucharc I just pulled this, and confirm that what I see looks like @maloun96 's video above. While the scrolling is... weird, it seems comparable to what was there before. I think we're OK, though I hope to find a better design solution to tiny charts/filters like this, as the scrolling is goofy.
I think we're OK here, but let me know if you see any remaining issue.
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.
I totally fine with that :) Thank you for double checking! 👍
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.
This PR fixes the original issue but it seems introduce 2 critical issues below.
@maloun96 please take another look, thanks!
- can not resize filter box individually, it drags the chart near by as resizing
Screen.Recording.2021-01-04.at.10.07.25.PM.mov
- all other charts(not filter box)can not be resized at all.
Screen.Recording.2021-01-04.at.10.07.41.PM.mov
…into hotfix/box-visibility
I believe issue #1 is due to the two charts being part of a "Column" and you're resizing that column. If I take them out of the column, they resize individually just fine. I also see #2, but I also see it on Therefore, I'm approving this PR, but will hold off from merging without your thumbs up, @junlincc |
@rusackas you are right about issue 1, my mistake! |
SUMMARY
Add visibility to filter box for viewing menu items
BEFORE/AFTER SCREENSHOTS OR ANIMATED GIF
BEFORE
AFTER
TEST PLAN
Go to dashboard
Set window size small that 3 dots menu can not fit into the box
See that menu is not visible at all.
ADDITIONAL INFORMATION