You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is caused by the logic in popover that tried to detect whether a click outside the menu has happened.
What happens is:
click on the menu -> the menu open
the same click is deemed to be a click outside, because the parentElement of an svg element is always null -> the menu immediately closes
Possible workaround (implemented in GJ): use pointer-events: none an .user-menu > * so that only the click on the outermost container will have effect.
The text was updated successfully, but these errors were encountered:
This is caused by the logic in popover that tried to detect whether a click outside the menu has happened.
What happens is:
parentElement
of an svg element is alwaysnull
-> the menu immediately closesPossible workaround (implemented in GJ): use
pointer-events: none
an.user-menu > *
so that only the click on the outermost container will have effect.The text was updated successfully, but these errors were encountered: