summaryrefslogtreecommitdiffstats
path: root/web/react/components/search_suggestion_list.jsx
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2015-11-30 16:27:23 -0500
committerhmhealey <harrisonmhealey@gmail.com>2015-12-01 16:27:22 -0500
commit713115be51cbc20e90be2153772e6f184ce7c76d (patch)
tree08e4a1138c0d7a3e7962b216b91762999b4f3618 /web/react/components/search_suggestion_list.jsx
parent6d10b103189168c556456319115774b41ee5ac73 (diff)
downloadchat-713115be51cbc20e90be2153772e6f184ce7c76d.tar.gz
chat-713115be51cbc20e90be2153772e6f184ce7c76d.tar.bz2
chat-713115be51cbc20e90be2153772e6f184ce7c76d.zip
Fixed SuggestionLists to properly hide when the textbox loses focus
Diffstat (limited to 'web/react/components/search_suggestion_list.jsx')
-rw-r--r--web/react/components/search_suggestion_list.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/web/react/components/search_suggestion_list.jsx b/web/react/components/search_suggestion_list.jsx
index 739b7199d..1549e90d5 100644
--- a/web/react/components/search_suggestion_list.jsx
+++ b/web/react/components/search_suggestion_list.jsx
@@ -35,7 +35,7 @@ export default class SearchSuggestionList extends SuggestionList {
}
render() {
- if (this.state.items.length === 0) {
+ if (this.state.items.length === 0 || !this.props.show) {
return null;
}
@@ -82,5 +82,5 @@ export default class SearchSuggestionList extends SuggestionList {
}
SearchSuggestionList.propTypes = {
- suggestionId: React.PropTypes.string.isRequired
+ ...SuggestionList.propTypes
};