From 1e2eee4f7ccc0fc29b553bfabb612e1974401f4e Mon Sep 17 00:00:00 2001 From: Saurabh Kumar Date: Wed, 8 Jan 2025 08:50:38 +0530 Subject: [PATCH] Remove any limit on rows exports when the submission is exported --- hypha/apply/funds/views/all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hypha/apply/funds/views/all.py b/hypha/apply/funds/views/all.py index 92bbc32e28..3a47586672 100644 --- a/hypha/apply/funds/views/all.py +++ b/hypha/apply/funds/views/all.py @@ -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