Skip to content

Commit

Permalink
fix: increase report limit (#26102) (#26104)
Browse files Browse the repository at this point in the history
(cherry picked from commit 58f55bc)

Co-authored-by: Ankush Menat <ankush@frappe.io>
  • Loading branch information
mergify[bot] and ankush committed Apr 22, 2024
1 parent 52666fa commit 8706dd8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frappe/public/js/frappe/views/reports/query_report.js
Original file line number Diff line number Diff line change
Expand Up @@ -957,7 +957,7 @@ frappe.views.QueryReport = class QueryReport extends frappe.views.BaseList {
let data = this.data;
let columns = this.columns.filter((col) => !col.hidden);

if (data.length > 100000) {
if (data.length > 1000000) {
let msg = __(
"This report contains {0} rows and is too big to display in browser, you can {1} this report instead.",
[cstr(format_number(data.length, null, 0)).bold(), __("export").bold()]
Expand Down

0 comments on commit 8706dd8

Please sign in to comment.