Bug 1561577 - prevent default when esc is pressed on shortcutsModal r=jlast

Prevent toggling open Split Console with escape is pressed to toggle shortcutsModal closed.

Differential Revision: https://phabricator.services.mozilla.com/D36448

--HG--
extra : moz-landing-system : lando
This commit is contained in:
Alex Rosenfeld 2019-07-02 16:23:17 +00:00
Родитель 0b091ec7d3
Коммит 2e33d7a927
1 изменённых файлов: 1 добавлений и 0 удалений

Просмотреть файл

@ -166,6 +166,7 @@ class App extends Component<Props, State> {
}
if (shortcutsModalEnabled) {
e.preventDefault();
this.toggleShortcutsModal();
}
};