summaryrefslogtreecommitdiffstats
path: root/web/react/utils/async_client.jsx
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/utils/async_client.jsx
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/utils/async_client.jsx')
-rw-r--r--web/react/utils/async_client.jsx18
1 files changed, 10 insertions, 8 deletions
diff --git a/web/react/utils/async_client.jsx b/web/react/utils/async_client.jsx
index 328a7a7f2..c5957e8cc 100644
--- a/web/react/utils/async_client.jsx
+++ b/web/react/utils/async_client.jsx
@@ -789,14 +789,16 @@ export function getSuggestedCommands(command, suggestionId, component) {
// pull out the suggested commands from the returned data
const terms = matches.map((suggestion) => suggestion.suggestion);
- AppDispatcher.handleServerAction({
- type: ActionTypes.SUGGESTION_RECEIVED_SUGGESTIONS,
- id: suggestionId,
- matchedPretext: command,
- terms,
- items: matches,
- component
- });
+ if (terms.length > 0) {
+ AppDispatcher.handleServerAction({
+ type: ActionTypes.SUGGESTION_RECEIVED_SUGGESTIONS,
+ id: suggestionId,
+ matchedPretext: command,
+ terms,
+ items: matches,
+ component
+ });
+ }
},
(err) => {
dispatchError(err, 'getCommandSuggestions');