Allow max page size 50000 #1185

This commit is contained in:
SPRINX0\prochazka
2025-08-26 10:30:30 +02:00
parent e88092cde7
commit 003dec269a
4 changed files with 4 additions and 4 deletions

View File

@@ -51,7 +51,7 @@
}
async function loadNextRows() {
const pageSize = getIntSettingsValue('dataGrid.pageSize', 100, 5, 1000);
const pageSize = getIntSettingsValue('dataGrid.pageSize', 100, 5, 50000);
const rows = await apiCall('jsldata/get-rows', {
jslid,
offset: loadedRows.length,