Skip to content

Commit

Permalink
Remove limit from axios call that retrieves groups
Browse files Browse the repository at this point in the history
Signed-off-by: Mephisto <mephisto@mephis.to>
  • Loading branch information
lephisto committed Dec 8, 2020
1 parent 3c62d2b commit b41b78c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ export default {
}
this.status.isLoading = true
return axios.get(generateOcsUrl('cloud', 2) + 'groups/details?limit=20&search=' + encodeURI(searchQuery)).then((response) => {
return axios.get(generateOcsUrl('cloud', 2) + 'groups/details?search=' + encodeURI(searchQuery)).then((response) => {
response.data.ocs.data.groups.forEach((group) => {
this.addGroup({
id: group.id,
Expand Down

0 comments on commit b41b78c

Please sign in to comment.