Henry Jameson 2 years ago
parent
commit
36aae1635a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/components/popover/popover.js

+ 1 - 1
src/components/popover/popover.js

@@ -234,7 +234,7 @@ const Popover = {
       }
     },
     onMouseleave (e) {
-      if (this.trigger === 'hover' && this.childrenShown.size > 0) {
+      if (this.trigger === 'hover' && this.childrenShown.size === 0) {
         this.graceTimeout = setTimeout(() => this.hidePopover(), 1)
       }
     },