Increase timeout on suggestion clear after blur (#5631)

Этот коммит содержится в:
Joram Wilander
2017-03-04 12:56:55 -05:00
коммит произвёл George Goldberg
родитель 511e9272da
Коммит 163f591b7b

Просмотреть файл

@@ -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();