We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8db5d95 commit c1ba504Copy full SHA for c1ba504
src/components/tooltip/helpers/bv-tooltip.js
@@ -365,10 +365,8 @@ export const BVTooltip = /*#__PURE__*/ Vue.extend({
365
!document.body.contains(target) ||
366
!isVisible(target) ||
367
this.dropdownOpen() ||
368
- (
369
- (isUndefinedOrNull(this.title) || this.title === '') &&
370
- (isUndefinedOrNull(this.content) || this.content === '')
371
- )
+ ((isUndefinedOrNull(this.title) || this.title === '') &&
+ (isUndefinedOrNull(this.content) || this.content === ''))
372
) {
373
// If trigger element isn't in the DOM or is not visible, or
374
// is on an open dropdown toggle, or has no content, then
0 commit comments