-
Notifications
You must be signed in to change notification settings - Fork 333
frontend: NamespacesAutocomplete: Show list of selected namespaces while hovering #3235
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
Conversation
Welcome @upsaurav12! |
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.
Thanks for contributing! I think these commits can be squashed into one, also don't forget to run make frontend-test
and update any outdated snapshots 🔥
4ee4018
to
709f47f
Compare
a3fbac3
to
709f47f
Compare
Thanks @upsaurav12 Would you mind adding the component to the context part of the commit message? Also the first letter of the verb should be capitalized. Also please remove this from the commit message?
|
e0d50e6
to
2aa3436
Compare
3597296
to
73b4aff
Compare
it was added in description when i squashed commits. |
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.
🎉 Thanks!
[APPROVALNOTIFIER] This PR is APPROVED This pull-request has been approved by: illume, upsaurav12 The full list of commands accepted by this bot can be found here. The pull request process is described here
Needs approval from an approver in each of these files:
Approvers can indicate their approval by writing |
Fixes #3232 ,
In PR user will able to see the list of other selected namespaces options while hovering to
+
sign.To achieve this i have used
useState
hook for adding state for checking if the user is hovering or not. I have also usedonMouseEnter
andonMouseLeave
for toggling hovering effect.When the User hovers to
+
sign it will triggeronMouseEnter
andisHovered = true
. List will only show whenisHovered
is true.