From 876c360922b7800cb2b90f5b1f62ab1544d380be Mon Sep 17 00:00:00 2001 From: Evan Simkowitz Date: Tue, 23 Jul 2024 12:40:50 -0700 Subject: [PATCH] Fix context menu click --- frontend/app/store/contextmenu.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/app/store/contextmenu.ts b/frontend/app/store/contextmenu.ts index 1adf04d29..5cd90793b 100644 --- a/frontend/app/store/contextmenu.ts +++ b/frontend/app/store/contextmenu.ts @@ -11,7 +11,7 @@ class ContextMenuModelType { getApi().onContextMenuClick(this.handleContextMenuClick.bind(this)); } - handleContextMenuClick(e: any, id: string): void { + handleContextMenuClick(id: string): void { let handler = this.handlers.get(id); if (handler) { handler();