Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewfulton9 committed Dec 17, 2024
1 parent 4d05726 commit ab80fbf
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion packages/widgets/src/menu.ts
Original file line number Diff line number Diff line change
Expand Up @@ -470,7 +470,16 @@ export class Menu extends Widget {
(document.documentElement.dir === 'rtl' ? 'right' : 'left');

// Open the menu as a root menu.
Private.openRootMenu(this, x, y, forceX, forceY, horizontalAlignment, host, ref);
Private.openRootMenu(
this,
x,
y,
forceX,
forceY,
horizontalAlignment,
host,
ref
);

// Activate the menu to accept keyboard input.
this.activate();
Expand Down

0 comments on commit ab80fbf

Please sign in to comment.