popover hide() not working #37163
Unanswered
hugo-lyppens
asked this question in
General
Replies: 0 comments
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
In tooltip.js, hide() function, it returns right away from _isShown because tip is null. So not working for my popover.
Later on (which it doesn't get to) there is a line const tip = this._getTipElement()
I ran this manually in the chrome console._getTipElement() and it returns a non-null
however this.tip is null.
It's a bug and I will revert to an earlier bootstrap 5.1.3. Thanks for your attention.
tooltip.js:
hide() {
if (!this._isShown()) {
return
}
Beta Was this translation helpful? Give feedback.
All reactions