summaryrefslogtreecommitdiffstats
path: root/webapp
diff options
context:
space:
mode:
authorJoram Wilander <jwawilander@gmail.com>2017-03-04 12:56:55 -0500
committerGeorge Goldberg <george@gberg.me>2017-03-04 17:56:55 +0000
commit163f591b7bad960ff61ad4eb69589ee2aec5d8e1 (patch)
treea454d79475fb406f6ba4e80e0d4e868d84f18328 /webapp
parent511e9272daa5bca863ac4db2712dea436419a6ba (diff)
downloadchat-163f591b7bad960ff61ad4eb69589ee2aec5d8e1.tar.gz
chat-163f591b7bad960ff61ad4eb69589ee2aec5d8e1.tar.bz2
chat-163f591b7bad960ff61ad4eb69589ee2aec5d8e1.zip
Increase timeout on suggestion clear after blur (#5631)
Diffstat (limited to 'webapp')
-rw-r--r--webapp/components/suggestion/suggestion_box.jsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/webapp/components/suggestion/suggestion_box.jsx b/webapp/components/suggestion/suggestion_box.jsx
index 29b9b2d8b..eade494ef 100644
--- a/webapp/components/suggestion/suggestion_box.jsx
+++ b/webapp/components/suggestion/suggestion_box.jsx
@@ -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();