From a470f9f4d41074c6a85690053023b714fc348b81 Mon Sep 17 00:00:00 2001 From: Jonathan Sampson Date: Wed, 19 Oct 2016 14:05:35 -0700 Subject: [PATCH] Fixes #4018 Fixes issue where LastPass' popup window is closed during user attempt to shift focus from username field to password field. Auditor: @bridiver --- js/components/popupWindow.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() } }