-
Notifications
You must be signed in to change notification settings - Fork 153
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
Move menu to be lower to avoid overlapping the tab bar. #3332
Conversation
@@ -192,6 +192,9 @@ export const Header: FC = memo(function Header() { | |||
id="more-menu" | |||
anchorEl={moreAnchorEl} | |||
open={Boolean(moreAnchorEl)} | |||
getContentAnchorEl={null} |
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.
nits, do we need to pass null
here? I mean if we just pass null value, then looks like it's not necessary to mention it on the caller side.
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.
Firstly I do not pass null
, but it does not works well. So I pass null
( I referred this stackoverflow )
it's necessary to mention it on the caller side.
What does this mean?
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.
sorry, it's typo. I missed not
word 😓
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 see, thanks for the explanation. Looks like someone had the same idea to make that null value as a default value, not to set from the caller side, but somehow is not available on our current using version, maybe it's way outdated already 😂
Let's keep it as is, thank you 👍
Co-authored-by: Khanh Tran <32532742+khanhtc1202@users.noreply.github.com>
Nice |
Great improvement! |
Code coverage for javascript is
|
What this PR does / why we need it:
Move the menu for visibility. And fix version placeholder.
before
after
Which issue(s) this PR fixes:
#3328 (comment)
Does this PR introduce a user-facing change?: