Skip to content

Commit

Permalink
Remove the project directory query limit
Browse files Browse the repository at this point in the history
  • Loading branch information
zuhdil committed Dec 10, 2021
1 parent 25b91de commit 7b70a65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion akvo/rest/views/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ def project_directory(request):
"""

page = request.rsr_page
projects = _project_list(request)[:10]
projects = _project_list(request)
projects_data = [
serialized_project(project_id) for project_id in projects.values_list('pk', flat=True)
]
Expand Down

0 comments on commit 7b70a65

Please # to comment.