-
-
Notifications
You must be signed in to change notification settings - Fork 79k
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
Popover + Tooltip - fix error when content or title is a number #22316
Conversation
I don't think it's the right fix. What you are doing is preemptively converting the I think what @cvrebert meant in this comment was to consider the The proper fix is to merge PR #20210 for the |
That's not true, I only convert when it's a number that's all. |
The delay is not converted: if (config.delay && typeof config.delay === 'number') {
config.delay = {
show : config.delay,
hide : config.delay
}
} The delay can be an object with |
For me it's a conversion but that's not the subject here. |
if |
At the beginning |
Actually I think the code regarding the delay, should be done after the call to |
It's a point of view but, we only accept About
For me they are not a better point of view than an other, your point of view is equal to mine but a path have been chosen that's all. |
As @cvrebert suggest (#20210 (comment)) convert content and title to string
Close #20193