diff --git a/src/components/OptionsSelector/BaseOptionsSelector.js b/src/components/OptionsSelector/BaseOptionsSelector.js index c5c7c3ec50b0..c0258f1252ef 100755 --- a/src/components/OptionsSelector/BaseOptionsSelector.js +++ b/src/components/OptionsSelector/BaseOptionsSelector.js @@ -125,8 +125,11 @@ class BaseOptionsSelector extends Component { // Unregister the shortcut before registering a new one to avoid lingering shortcut listener this.unSubscribeFromKeyboardShortcut(); if (this.props.isFocused) { + this.subscribeActiveElement(); this.subscribeToEnterShortcut(); this.subscribeToCtrlEnterShortcut(); + } else { + this.unSubscribeActiveElement(); } }