vrembem 4.0.0-next.21 → 4.0.0-next.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dev/index.js CHANGED
@@ -1385,7 +1385,7 @@ function handleMouseEnter(popover) {
1385
1385
  const delay = this.activeTooltip ? 0 : popover.config["toggle-delay"];
1386
1386
  if (this.activeTooltip) this.activeTooltip.close();
1387
1387
  popover.toggleDelayId = setTimeout(() => {
1388
- if (popover) popover.open();
1388
+ if (popover.id) popover.open();
1389
1389
  }, delay);
1390
1390
  }
1391
1391
  function handleMouseLeave(popover) {