Fix edge case in popover

This commit is contained in:
Svilen Markov 2024-10-17 21:36:41 +01:00
parent 8a41a9f506
commit 1b42312d02

View file

@ -56,6 +56,8 @@ function clearTogglePopoverTimeout() {
}
function showPopover() {
if (pendingTarget === null) return;
activeTarget = pendingTarget;
pendingTarget = null;