diff --git a/src/components/FindBar/FindBar.js b/src/components/FindBar/FindBar.js index a9e12896..fd78b6bf 100644 --- a/src/components/FindBar/FindBar.js +++ b/src/components/FindBar/FindBar.js @@ -100,8 +100,11 @@ class FindBar extends Component { if (command.search) { this.setState({ - activeScope: SEARCH, - placeholder: '', + value: '', + placeholder: PLACEHOLDER, + activeScope: null, + }, () => { + this._input.blur(); }); enteredParamValue && this.props.runCommand(SEARCH, { searchTerm: enteredParamValue });