From 118dc4b6f06baeee1ebc00899609746fa6372859 Mon Sep 17 00:00:00 2001 From: Linus Pahl Date: Thu, 21 Mar 2024 16:25:42 +0100 Subject: [PATCH] Do not listen for shortcuts in inputs, by default. (#18716) --- graylog2-web-interface/src/hooks/useHotkey.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/graylog2-web-interface/src/hooks/useHotkey.tsx b/graylog2-web-interface/src/hooks/useHotkey.tsx index 80fd1eef0640..9b88579af0dc 100644 --- a/graylog2-web-interface/src/hooks/useHotkey.tsx +++ b/graylog2-web-interface/src/hooks/useHotkey.tsx @@ -32,7 +32,6 @@ export const DEFAULT_COMBINATION_KEY = '+'; const defaultOptions: ReactHotKeysHookOptions & Options = { preventDefault: true, enabled: true, - enableOnFormTags: true, enableOnContentEditable: false, combinationKey: DEFAULT_COMBINATION_KEY, splitKey: DEFAULT_SPLIT_KEY,