Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/fix/submission-export' into test
Browse files Browse the repository at this point in the history
  • Loading branch information
frjo committed Jan 8, 2025
2 parents 9ee21fe + 1e2eee4 commit f109485
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 f109485

Please sign in to comment.