summaryrefslogtreecommitdiffstats
path: root/webapp/components/suggestion/command_provider.jsx
diff options
context:
space:
mode:
authorHarrison Healey <harrisonmhealey@gmail.com>2016-06-02 15:42:50 -0400
committerCorey Hulen <corey@hulen.com>2016-06-02 12:42:50 -0700
commite44b8ec6d57fc55230a5c97ea105b7fd9ef59aca (patch)
tree7e0f7fd16ee4ec9376aa379fb4ac4635bdceae81 /webapp/components/suggestion/command_provider.jsx
parent0788e836475722123c36835489396d65c6f9b252 (diff)
downloadchat-e44b8ec6d57fc55230a5c97ea105b7fd9ef59aca.tar.gz
chat-e44b8ec6d57fc55230a5c97ea105b7fd9ef59aca.tar.bz2
chat-e44b8ec6d57fc55230a5c97ea105b7fd9ef59aca.zip
Fixed click handlers for autocomplete (#3213)
Diffstat (limited to 'webapp/components/suggestion/command_provider.jsx')
-rw-r--r--webapp/components/suggestion/command_provider.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/webapp/components/suggestion/command_provider.jsx b/webapp/components/suggestion/command_provider.jsx
index 73ae4deaa..58b77a331 100644
--- a/webapp/components/suggestion/command_provider.jsx
+++ b/webapp/components/suggestion/command_provider.jsx
@@ -9,7 +9,7 @@ import Suggestion from './suggestion.jsx';
class CommandSuggestion extends Suggestion {
render() {
- const {item, isSelection, onClick} = this.props;
+ const {item, isSelection} = this.props;
let className = 'command';
if (isSelection) {
@@ -19,7 +19,7 @@ class CommandSuggestion extends Suggestion {
return (
<div
className={className}
- onClick={onClick}
+ onClick={this.handleClick}
>
<div className='command__title'>
<string>{item.suggestion} {item.hint}</string>