Skip to content

Commit

Permalink
fix: pop from form_params
Browse files Browse the repository at this point in the history
  • Loading branch information
barredterra authored and akhilnarang committed Mar 20, 2024
1 parent bb5c3a1 commit 377b35c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frappe/desk/reportview.py
Expand Up @@ -353,7 +353,7 @@ def export_query():
form_params["as_list"] = True
doctype = form_params.pop("doctype")
file_format_type = form_params.pop("file_format_type")
title = frappe.form_dict.pop("title", doctype)
title = form_params.pop("title", doctype)
csv_params = pop_csv_params(form_params)
add_totals_row = 1 if form_params.pop("add_totals_row", None) == "1" else None

Expand Down

0 comments on commit 377b35c

Please sign in to comment.