Skip to content

Commit

Permalink
fix: allow page length 2500 (#25062)
Browse files Browse the repository at this point in the history
(cherry picked from commit 21cc09e)
  • Loading branch information
barredterra authored and mergify[bot] committed Mar 15, 2024
1 parent 60d8c1c commit d40a169
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frappe/public/js/frappe/list/base_list.js
Expand Up @@ -353,7 +353,7 @@ frappe.views.BaseList = class BaseList {
}

setup_paging_area() {
const paging_values = [20, 100, 500];
const paging_values = [20, 100, 500, 2500];
this.$paging_area = $(
`<div class="list-paging-area level">
<div class="level-left">
Expand Down

0 comments on commit d40a169

Please sign in to comment.