Skip to content

Commit

Permalink
Increase timeout on suggestion clear after blur
Browse files Browse the repository at this point in the history
  • Loading branch information
jwilander committed Mar 3, 2017
1 parent f37c03a commit 2a1db3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/components/suggestion/suggestion_box.jsx
Expand Up @@ -63,7 +63,7 @@ export default class SuggestionBox extends React.Component {
setTimeout(() => {
// Delay this slightly so that we don't clear the suggestions before we run click handlers on SuggestionList
GlobalActions.emitClearSuggestions(this.suggestionId);
}, 100);
}, 200);

if (this.props.onBlur) {
this.props.onBlur();
Expand Down

0 comments on commit 2a1db3d

Please sign in to comment.