-
Notifications
You must be signed in to change notification settings - Fork 358
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
Bug - Dropdown/Select/MenuContainer - tooltips do not work by default in items #11358
Comments
Identified from OCP migration. |
@nicolethoen, can we get this prioritized so the tooltips in the console masthead can be added back? |
11 tasks
6 tasks
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Because Tooltip wraps the trigger in a
div
, this interferes with the trigger/hover conditions so a tooltip will not appear. We should make it soDropdown
(and probablySelect
/MenuContainer
will need this as well) creates an internal ref to use by default for tooltips, or we should make it soTooltip
does that internally.Workaround: Create a reference, pass the ref to
DropdownItem
and thetriggerRef
field oftooltipProps
.Aside: Keyboard navigation still shows the tooltip, it is only the mouse that doesn't trigger it.
The text was updated successfully, but these errors were encountered: