Changed CommandProvider to only set the matched pretext if it actually matches anything

Этот коммит содержится в:
hmhealey
2016-02-05 09:47:43 -05:00
родитель 8e79f12f3c
Коммит e6a7594d70
3 изменённых файлов: 13 добавлений и 12 удалений

Просмотреть файл

@@ -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');