From: Eugen Rochko Date: Tue, 10 Oct 2017 23:01:17 +0000 (+0200) Subject: Fix #5306: Stop hotkeys in input fields even when shift is pressed (#5309) X-Git-Url: https://git.xn--scling-oua.cat.family/?a=commitdiff_plain;h=b3d7ad958fd9e26f64efb24b9ae0de8254fd1cd5;p=mastodon.git Fix #5306: Stop hotkeys in input fields even when shift is pressed (#5309) AZERTY layouts require pressing shift to press a number at all, so it triggers a column switch even when simply typing numbers in textarea --- diff --git a/app/javascript/mastodon/features/ui/index.js b/app/javascript/mastodon/features/ui/index.js index 21f2395ba..108b28422 100644 --- a/app/javascript/mastodon/features/ui/index.js +++ b/app/javascript/mastodon/features/ui/index.js @@ -186,7 +186,7 @@ export default class UI extends React.Component { componentDidMount () { this.hotkeys.__mousetrap__.stopCallback = (e, element) => { - return !(e.altKey || e.ctrlKey || e.shiftKey || e.metaKey) && ['TEXTAREA', 'SELECT', 'INPUT'].includes(element.tagName); + return !(e.altKey || e.ctrlKey || e.metaKey) && ['TEXTAREA', 'SELECT', 'INPUT'].includes(element.tagName); }; }