We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a955f37 commit 05ab977Copy full SHA for 05ab977
services/static-webserver/client/source/class/osparc/jobs/RunsTableModel.js
@@ -132,9 +132,8 @@ qx.Class.define("osparc.jobs.RunsTableModel", {
132
133
// Limit the request to smaller chunks for better pagination
134
const serverMaxLimit = osparc.store.Jobs.SERVER_MAX_LIMIT;
135
- const PAGE_SIZE = serverMaxLimit;
136
const nextChunkStart = this.__findNextChunkStart(firstRow);
137
- const lastRow = Math.min(nextChunkStart + PAGE_SIZE - 1, this._rowCount - 1);
+ const lastRow = Math.min(nextChunkStart + serverMaxLimit - 1, this._rowCount - 1);
138
139
console.info(`📏 Loading sequential chunk: ${nextChunkStart}-${lastRow} (requested: ${firstRow}-${qxLastRow})`);
140
0 commit comments