Skip to content

Commit

Permalink
fix action-menu null ref error
Browse files Browse the repository at this point in the history
  • Loading branch information
jcfranco committed Nov 15, 2024
1 parent d2e6d5d commit 1907b11
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -334,6 +334,9 @@ export class ActionMenu extends LitElement implements LoadableComponent {
}

private setPopoverEl(el: Popover["el"]): void {
if (!el) {
return;
}
this.popoverEl = el;
el.open = this.open;
}
Expand Down

0 comments on commit 1907b11

Please sign in to comment.