Mateus Pontes
Results
11
comments of
Mateus Pontes
I had this issue, I fixed with a setTimeout while they patch a better solution. ```javascript onBlur(e) { e.stopPropagation(); e.preventDefault(); setTimeout(() => { if (this.refs.typeahead.state['showResults']) this.refs.typeahead.setState({showResults: false}) }, 150); }...