forked from mirrors/catstodon
[Glitch] Fix a leftover argument to api()
Port 8ea2726376
to glitch-soc
Signed-off-by: Claire <claire.github-309c@sitedethib.com>
This commit is contained in:
parent
d76106da12
commit
e947f1f2ed
1 changed files with 1 additions and 1 deletions
|
@ -15,7 +15,7 @@ const mapStateToProps = (state, { columnId }) => {
|
||||||
return {
|
return {
|
||||||
settings: columns.get(index).get('params'),
|
settings: columns.get(index).get('params'),
|
||||||
onLoad (value) {
|
onLoad (value) {
|
||||||
return api(() => state).get('/api/v2/search', { params: { q: value, type: 'hashtags' } }).then(response => {
|
return api().get('/api/v2/search', { params: { q: value, type: 'hashtags' } }).then(response => {
|
||||||
return (response.data.hashtags || []).map((tag) => {
|
return (response.data.hashtags || []).map((tag) => {
|
||||||
return { value: tag.name, label: `#${tag.name}` };
|
return { value: tag.name, label: `#${tag.name}` };
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in a new issue