Stop Enter selecting a drop down menu when the modal dialog is displayed

pull/3094/head
up730418 7 years ago committed by yann300
parent f4ba56a94d
commit 596e2faa22
  1. 1
      src/app/ui/modaldialog.js

@ -40,6 +40,7 @@ module.exports = (title, content, ok, cancel) => {
}
function modalKeyEvent (e) {
e.preventDefault()
if (e.keyCode === 27) {
cancelListener()
} else if (e.keyCode === 13) {

Loading…
Cancel
Save