diff --git a/js/components/popupWindow.js b/js/components/popupWindow.js index 63fd8733c74..96ddece190d 100644 --- a/js/components/popupWindow.js +++ b/js/components/popupWindow.js @@ -22,7 +22,7 @@ class PopupWindow extends ImmutableComponent { } onKeyDown (e) { - if (e.keyCode === KeyCodes.ESC || e.keyCode === KeyCodes.TAB) { + if (e.keyCode === KeyCodes.ESC) { windowActions.setPopupWindowDetail() } }