Skip to content

Commit 8f074ea

Browse files
committed
Select a Run
1 parent 6d9b8d2 commit 8f074ea

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,11 @@ qx.Class.define("osparc.jobs.ActivityOverview", {
100100
runsHistoryTitleLayout.add(runsHistoryTitleHelper);
101101
runsHistoryLayout.add(runsHistoryTitleLayout);
102102

103+
const introText = new qx.ui.basic.Label(this.tr("Select a Run to check the details")).set({
104+
paddingLeft: 10,
105+
});
106+
runsHistoryLayout.add(introText);
107+
103108
const projectUuid = projectData["uuid"];
104109
const includeChildren = true;
105110
const runningOnly = false;

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

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ qx.Class.define("osparc.jobs.RunsBrowser", {
2424

2525
this._setLayout(new qx.ui.layout.VBox(10));
2626

27+
this.getChildControl("intro-label");
2728
const jobsFilter = this.getChildControl("jobs-filter");
2829
const runningCB = this.getChildControl("running-only-cb");
2930
const runsTable = this.getChildControl("runs-table");
@@ -52,6 +53,10 @@ qx.Class.define("osparc.jobs.RunsBrowser", {
5253
control = new qx.ui.container.Composite(new qx.ui.layout.HBox(5));
5354
this._add(control);
5455
break;
56+
case "intro-label":
57+
control = new qx.ui.basic.Label(this.tr("Select a Run to check the details"));
58+
this.getChildControl("header-filter").add(control);
59+
break;
5560
case "jobs-filter":
5661
control = new osparc.filter.TextFilter("text", "jobsList").set({
5762
allowStretchX: true,

0 commit comments

Comments
 (0)