Fully disable hotkeys when input element is focused (#5324)

Because alt+n is a way to enter some kinda letter on some keyboard
This commit is contained in:
Eugen Rochko 2017-10-11 16:31:07 +02:00 committed by GitHub
parent 19d3317a69
commit 476e79b8e3
1 changed files with 1 additions and 1 deletions

View File

@ -186,7 +186,7 @@ export default class UI extends React.Component {
componentDidMount () {
this.hotkeys.__mousetrap__.stopCallback = (e, element) => {
return !(e.altKey || e.ctrlKey || e.metaKey) && ['TEXTAREA', 'SELECT', 'INPUT'].includes(element.tagName);
return ['TEXTAREA', 'SELECT', 'INPUT'].includes(element.tagName);
};
}