do not skip handleSelect on sub-menu click

This commit is contained in:
milan 2024-08-07 15:38:23 +02:00
parent 5f78602e4d
commit c4e674d177

View File

@ -137,8 +137,8 @@ export class EgwMenuShoelace extends LitElement
handleSelect(event) handleSelect(event)
{ {
// If not open or from a sub-menu, skip // If not open, skip
if(!this.popup || event.target !== this.menu) if(!this.popup)
{ {
return; return;
} }