We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1ae4ea commit 61a4e05Copy full SHA for 61a4e05
lib/Autocomplete.js
@@ -256,7 +256,6 @@ let Autocomplete = React.createClass({
256
}, () => {
257
this.props.onSelect(value, item)
258
this.refs.input.focus()
259
- this.setIgnoreBlur(false)
260
})
261
},
262
@@ -298,6 +297,7 @@ let Autocomplete = React.createClass({
298
297
299
handleInputFocus () {
300
if (this._ignoreBlur)
+ this.setIgnoreBlur(false)
301
return
302
// We don't want `selectItemFromMouse` to trigger when
303
// the user clicks into the input to focus it, so set this
0 commit comments