summaryrefslogtreecommitdiffstats
path: root/web/react/components/suggestion
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2016-02-05 09:47:43 -0500
committerhmhealey <harrisonmhealey@gmail.com>2016-02-05 10:21:53 -0500
commite6a7594d70dfde30e3dbb36d45e5d1458883553f (patch)
tree1ec97e6a2710a0acf8f3a713876a9bc1dcd28748 /web/react/components/suggestion
parent8e79f12f3c6c0f8858addaf6f66ea6e88a965b65 (diff)
downloadchat-e6a7594d70dfde30e3dbb36d45e5d1458883553f.tar.gz
chat-e6a7594d70dfde30e3dbb36d45e5d1458883553f.tar.bz2
chat-e6a7594d70dfde30e3dbb36d45e5d1458883553f.zip
Changed CommandProvider to only set the matched pretext if it actually matches anything
Diffstat (limited to 'web/react/components/suggestion')
-rw-r--r--web/react/components/suggestion/command_provider.jsx3
1 files changed, 0 insertions, 3 deletions
diff --git a/web/react/components/suggestion/command_provider.jsx b/web/react/components/suggestion/command_provider.jsx
index 91d556bb9..09c9b9982 100644
--- a/web/react/components/suggestion/command_provider.jsx
+++ b/web/react/components/suggestion/command_provider.jsx
@@ -2,7 +2,6 @@
// See License.txt for license information.
import * as AsyncClient from '../../utils/async_client.jsx';
-import SuggestionStore from '../../stores/suggestion_store.jsx';
class CommandSuggestion extends React.Component {
render() {
@@ -38,8 +37,6 @@ CommandSuggestion.propTypes = {
export default class CommandProvider {
handlePretextChanged(suggestionId, pretext) {
if (pretext.startsWith('/')) {
- SuggestionStore.setMatchedPretext(suggestionId, pretext);
-
AsyncClient.getSuggestedCommands(pretext, suggestionId, CommandSuggestion);
}
}