summaryrefslogtreecommitdiffstats
path: root/webapp/components/suggestion/suggestion_box.jsx
diff options
context:
space:
mode:
authorChristopher Speller <crspeller@gmail.com>2016-03-17 11:45:42 -0400
committerChristopher Speller <crspeller@gmail.com>2016-03-17 11:45:42 -0400
commit6b9d89522475c84e7833d17179b3af65b92240d6 (patch)
treecf5fc21b47bdf745a47541eb8beb2c85084a5015 /webapp/components/suggestion/suggestion_box.jsx
parentd42459729c6015b07c2f0d872a44212e93bccb39 (diff)
parentc94b7b9d4fe2c51e6427888d9ba6e3d7b8eb321c (diff)
downloadchat-6b9d89522475c84e7833d17179b3af65b92240d6.tar.gz
chat-6b9d89522475c84e7833d17179b3af65b92240d6.tar.bz2
chat-6b9d89522475c84e7833d17179b3af65b92240d6.zip
Merge pull request #2169 from kernicPanel/external-slashcommands-management
PLT-2183 Slash command auto-complete
Diffstat (limited to 'webapp/components/suggestion/suggestion_box.jsx')
-rw-r--r--webapp/components/suggestion/suggestion_box.jsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/webapp/components/suggestion/suggestion_box.jsx b/webapp/components/suggestion/suggestion_box.jsx
index e3ec63194..97c6c6cd9 100644
--- a/webapp/components/suggestion/suggestion_box.jsx
+++ b/webapp/components/suggestion/suggestion_box.jsx
@@ -111,7 +111,7 @@ export default class SuggestionBox extends React.Component {
handlePretextChanged(pretext) {
for (const provider of this.props.providers) {
- provider.handlePretextChanged(this.suggestionId, pretext);
+ provider.handlePretextChanged(this.suggestionId, pretext, this.props.channelId);
}
}
@@ -160,6 +160,7 @@ SuggestionBox.propTypes = {
value: React.PropTypes.string.isRequired,
onUserInput: React.PropTypes.func,
providers: React.PropTypes.arrayOf(React.PropTypes.object),
+ channelId: React.PropTypes.string,
// explicitly name any input event handlers we override and need to manually call
onChange: React.PropTypes.func,