Actually complete the autosuggestion feature

This commit is contained in:
Eugen Rochko
2016-10-30 18:21:38 +01:00
parent c49f6290eb
commit 7e35650398
2 changed files with 3 additions and 3 deletions

View File

@ -143,7 +143,7 @@ export function fetchComposeSuggestions(token) {
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));