Skip to content

Commit 74580be

Browse files
committed
latestOnly not needed
1 parent 55d1c78 commit 74580be

File tree

3 files changed

+4
-6
lines changed

3 files changed

+4
-6
lines changed

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,8 @@ qx.Class.define("osparc.jobs.ActivityOverview", {
5353
runsHistoryTitleLayout.add(runsHistoryTitleHelper);
5454
this._add(runsHistoryTitleLayout);
5555

56-
const latestOnly = false;
5756
const projectUuid = projectData["uuid"];
58-
const runsTable = new osparc.jobs.RunsTable(latestOnly, projectUuid);
57+
const runsTable = new osparc.jobs.RunsTable(projectUuid);
5958
const columnModel = runsTable.getTableColumnModel();
6059
// Hide project name column
6160
columnModel.setColumnVisible(osparc.jobs.RunsTable.COLS.PROJECT_NAME.column, false);

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

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,8 @@ qx.Class.define("osparc.jobs.RunsBrowser", {
6161
});
6262
break;
6363
case "runs-table": {
64-
const latestOnly = true;
6564
const projectUuid = null;
66-
control = new osparc.jobs.RunsTable(latestOnly, projectUuid);
65+
control = new osparc.jobs.RunsTable(projectUuid);
6766
control.addListener("runSelected", e => this.fireDataEvent("runSelected", e.getData()));
6867
this._add(control);
6968
break;

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@
1919
qx.Class.define("osparc.jobs.RunsTable", {
2020
extend: qx.ui.table.Table,
2121

22-
construct: function(latestOnly = true, projectUuid = null) {
22+
construct: function(projectUuid = null) {
2323
this.base(arguments);
2424

25-
const model = new osparc.jobs.RunsTableModel(latestOnly, projectUuid);
25+
const model = new osparc.jobs.RunsTableModel(projectUuid);
2626
this.setTableModel(model);
2727

2828
this.set({

0 commit comments

Comments
 (0)