diff --git a/static/js/hotkey.js b/static/js/hotkey.js index 8592609bb2..d73faf7e3f 100644 --- a/static/js/hotkey.js +++ b/static/js/hotkey.js @@ -164,7 +164,7 @@ exports.process_hotkey = function (e) { } } - if (popovers.actions_popped() && actions_dropdown_hotkeys.indexOf(event_name) !== -1) { + if ((actions_dropdown_hotkeys.indexOf(event_name) !== -1) && popovers.actions_popped()) { popovers.actions_menu_handle_keyboard(event_name); return true; }