summaryrefslogtreecommitdiffstats
path: root/web/react/components/suggestion_box.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/suggestion_box.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/suggestion_box.jsx')
-rw-r--r--web/react/components/suggestion_box.jsx9
1 files changed, 6 insertions, 3 deletions
diff --git a/web/react/components/suggestion_box.jsx b/web/react/components/suggestion_box.jsx
index 5510ba340..3fff5b754 100644
--- a/web/react/components/suggestion_box.jsx
+++ b/web/react/components/suggestion_box.jsx
@@ -147,8 +147,6 @@ export default class SuggestionBox extends React.Component {
}
render() {
- const SuggestionList = this.props.listComponent;
-
const newProps = Object.assign({}, this.props, {
onFocus: this.handleFocus,
onChange: this.handleChange,
@@ -173,10 +171,15 @@ export default class SuggestionBox extends React.Component {
);
}
+ const SuggestionListComponent = this.props.listComponent;
+
return (
<div>
{textbox}
- <SuggestionList suggestionId={this.suggestionId} />
+ <SuggestionListComponent
+ suggestionId={this.suggestionId}
+ show={this.state.focused}
+ />
</div>
);
}