mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-21 22:16:00 +00:00
Allow max page size 50000 #1185
This commit is contained in:
@@ -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,
|
||||
|
||||
Reference in New Issue
Block a user