return (dispatch, getState) => {
const loadedCandidates = getState().get('accounts').filter(item => item.get('acct').toLowerCase().slice(0, token.length) === token).map(item => ({
label: item.get('acct'),
- completion: item.get('acct').slice(0, token.length)
+ completion: item.get('acct').slice(token.length)
})).toList().toJS();
dispatch(readyComposeSuggestions(loadedCandidates));
}
};
-const getSuggestionValue = suggestion => suggestion;
+const getSuggestionValue = suggestion => suggestion.completion;
const renderSuggestion = suggestion => (
- <span>{suggestion}</span>
+ <span>{suggestion.label}</span>
);
const textareaStyle = {