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
This commit is contained in:
Eugen Rochko 2017-10-11 01:01:17 +02:00 committed by GitHub
parent 552d22bec9
commit b3d7ad958f

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.shiftKey || e.metaKey) && ['TEXTAREA', 'SELECT', 'INPUT'].includes(element.tagName);
return !(e.altKey || e.ctrlKey || e.metaKey) && ['TEXTAREA', 'SELECT', 'INPUT'].includes(element.tagName);
};
}