diff options
author | multiple creatures <dev@multiple-creature.party> | 2019-04-29 23:05:24 -0500 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2019-05-21 03:16:22 -0500 |
commit | 79cc6792a16c75c725c5c361a42c582cdf613cf6 (patch) | |
tree | c2ffdb1c412f3a7b94f41a97e39161e96ef7edd8 /app/javascript/flavours/glitch | |
parent | cfaed183aadc4306cec2a2004c20c5b107467a7a (diff) |
Adjust search limits and ordering.
Diffstat (limited to 'app/javascript/flavours/glitch')
-rw-r--r-- | app/javascript/flavours/glitch/actions/search.js | 2 | ||||
-rw-r--r-- | app/javascript/flavours/glitch/features/compose/components/search_results.js | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/app/javascript/flavours/glitch/actions/search.js b/app/javascript/flavours/glitch/actions/search.js index f1fcf1cc6..da3f6fa40 100644 --- a/app/javascript/flavours/glitch/actions/search.js +++ b/app/javascript/flavours/glitch/actions/search.js @@ -37,7 +37,7 @@ export function submitSearch() { params: { q: value, resolve: true, - limit: 33, + limit: 100, }, }).then(response => { if (response.data.accounts) { diff --git a/app/javascript/flavours/glitch/features/compose/components/search_results.js b/app/javascript/flavours/glitch/features/compose/components/search_results.js index 893b0b4e7..222844fb9 100644 --- a/app/javascript/flavours/glitch/features/compose/components/search_results.js +++ b/app/javascript/flavours/glitch/features/compose/components/search_results.js @@ -99,9 +99,9 @@ class SearchResults extends ImmutablePureComponent { <FormattedMessage id='search_results.total' defaultMessage='{count, number} {count, plural, one {result} other {results}}' values={{ count }} /> </header> + {accounts} {hashtags} {statuses} - {accounts} </div> ); }; |