Skip to content

Commit 29ff34f

Browse files
committed
fix
1 parent f607393 commit 29ff34f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ qx.Class.define("osparc.jobs.RunsTableModel", {
9090
const getFetchPromise = (offset, limit) => {
9191
let promise;
9292
if (this.__projectUuid) {
93-
promise = osparc.store.Jobs.getInstance().fetchJobsHistory(this.__projectUuid, offset, limit, JSON.stringify(this.getOrderBy()));
93+
promise = osparc.store.Jobs.getInstance().fetchJobsHistory(this.__projectUuid, this.__includeChildren, offset, limit, JSON.stringify(this.getOrderBy()));
9494
} else {
9595
promise = osparc.store.Jobs.getInstance().fetchJobsActive(offset, limit, JSON.stringify(this.getOrderBy()));
9696
}

0 commit comments

Comments
 (0)