Skip to content

Commit

Permalink
Increase timeout on suggestion clear after blur (#5631)
Browse files Browse the repository at this point in the history
  • Loading branch information
jwilander authored and grundleborg committed Mar 4, 2017
1 parent 511e927 commit 163f591
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/components/suggestion/suggestion_box.jsx
Original file line number Diff line number Diff line change
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 163f591

Please sign in to comment.