Skip to content

Commit

Permalink
Remove any limit on rows exported when the submission is exported (#4323
Browse files Browse the repository at this point in the history
)

Fixes #4320
  • Loading branch information
theskumar authored Jan 10, 2025
1 parent acaaced commit 9fd3740
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hypha/apply/funds/views/all.py
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ def submissions_all(
if request.GET.get("format") == "csv" and permissions.can_export_submissions(
request.user
):
csv_data = export_submissions_to_csv(page.object_list)
csv_data = export_submissions_to_csv(qs)
response = HttpResponse(csv_data.readlines(), content_type="text/csv")
response["Content-Disposition"] = "attachment; filename=submissions.csv"
return response
Expand Down

0 comments on commit 9fd3740

Please sign in to comment.