Browse Source

[Glitch] Fix search in web UI not setting a limit, restore limit of 10

Port 379c3e237f to glitch-soc, but changing
the 5 limit to 10, since that's what we had previously
closed-social-glitch-2
Eugen Rochko 5 years ago
committed by Thibaut Girka
parent
commit
59551ece31
1 changed files with 1 additions and 0 deletions
  1. +1
    -0
      app/javascript/flavours/glitch/actions/search.js

+ 1
- 0
app/javascript/flavours/glitch/actions/search.js View File

@ -37,6 +37,7 @@ export function submitSearch() {
params: {
q: value,
resolve: true,
limit: 10,
},
}).then(response => {
if (response.data.accounts) {

Loading…
Cancel
Save