-
-
Notifications
You must be signed in to change notification settings - Fork 32.5k
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
[Tooltip] disableHoverListener shows title #13346
Comments
Isn't that what it's supposed to do? Don't prevent the default behavior and fallback to native tooltip behavior? What is to use case for this? Why would you use the Tooltip component if you never want to display a tooltip? I guess you issue is that you're passing <Tooltip
open={Boolean(possiblyUndefinedControlledOpen)}
title="text"
<TextField />
</Tooltip> |
@eps1lon I believe it's a bug. We shouldn't be displaying the native title even when people are using
|
@eps1lon I mean a behavior that @oliviertassinari showed. In the docs in trigger sections same case https://material-ui.com/demos/tooltips/ |
The uncontrolled tooltip with disableHoverListener set on true.
Expected Behavior
The setup disableHoverListener property affects the visibility of the standard html title property
Current Behavior
When the disableHoverListener prop is true and open prop is't present then standart html title is appear on wrapped elemen by on hover event.
Examples
The text was updated successfully, but these errors were encountered: