From adef9f2cd610b04fff0891c8759fbe0696a63c22 Mon Sep 17 00:00:00 2001 From: Vijay Misal Date: Wed, 12 Aug 2026 21:54:34 +0530 Subject: [PATCH] fix: Alt+E resolve shortcut also opens Chrome's built-in menu on Windows (#15418) --- .../dashboard/components/buttons/ResolveAction.vue | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app/javascript/dashboard/components/buttons/ResolveAction.vue b/app/javascript/dashboard/components/buttons/ResolveAction.vue index a57bc1825..594b9d388 100644 --- a/app/javascript/dashboard/components/buttons/ResolveAction.vue +++ b/app/javascript/dashboard/components/buttons/ResolveAction.vue @@ -144,7 +144,12 @@ const keyboardEvents = { allowOnFocusedInput: true, }, 'Alt+KeyE': { - action: async () => { + action: async event => { + // Chrome on Windows treats Alt+E as a legacy shortcut for its own + // menu (Alt+E / Alt+F both open "Customize and control Google + // Chrome"). Without preventDefault, our resolve action still runs, + // but Chrome's menu also opens on top of it. + event.preventDefault(); onCmdResolveConversation(); }, },