🌐 AI搜索 & 代理 主页
Skip to content

Commit c1ba504

Browse files
authored
Update bv-tooltip.js
1 parent 8db5d95 commit c1ba504

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

src/components/tooltip/helpers/bv-tooltip.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -365,10 +365,8 @@ export const BVTooltip = /*#__PURE__*/ Vue.extend({
365365
!document.body.contains(target) ||
366366
!isVisible(target) ||
367367
this.dropdownOpen() ||
368-
(
369-
(isUndefinedOrNull(this.title) || this.title === '') &&
370-
(isUndefinedOrNull(this.content) || this.content === '')
371-
)
368+
((isUndefinedOrNull(this.title) || this.title === '') &&
369+
(isUndefinedOrNull(this.content) || this.content === ''))
372370
) {
373371
// If trigger element isn't in the DOM or is not visible, or
374372
// is on an open dropdown toggle, or has no content, then

0 commit comments

Comments
 (0)