Skip to content

Commit 8d9f937

Browse files
committed
minor
1 parent 8f6c610 commit 8d9f937

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

services/static-webserver/client/source/class/osparc/jobs/RunsTableModel.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ qx.Class.define("osparc.jobs.RunsTableModel", {
8989
_loadRowCount() {
9090
const offset = 0;
9191
const limit = 1;
92-
const orderBy = JSON.stringify(this.getOrderBy());
92+
const orderBy = this.getOrderBy();
9393
const resolveWResponse = true;
9494
let promise;
9595
if (this.getProjectUuid()) {
@@ -113,7 +113,7 @@ qx.Class.define("osparc.jobs.RunsTableModel", {
113113
const lastRow = Math.min(qxLastRow, this._rowCount - 1);
114114
// Returns a request promise with given offset and limit
115115
const getFetchPromise = (offset, limit) => {
116-
const orderBy = JSON.stringify(this.getOrderBy());
116+
const orderBy = this.getOrderBy();
117117
let promise;
118118
if (this.getProjectUuid()) {
119119
promise = osparc.store.Jobs.getInstance().fetchJobsHistory(this.getProjectUuid(), this.__includeChildren, offset, limit, orderBy);

0 commit comments

Comments
 (0)