Skip to content

Commit 3649479

Browse files
committed
ContextBreadcrumbs on Workspace header
1 parent ea413c4 commit 3649479

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

services/static-webserver/client/source/class/osparc/dashboard/WorkspaceHeader.js

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,11 @@ qx.Class.define("osparc.dashboard.WorkspaceHeader", {
9898
});
9999
this._add(control);
100100
break;
101+
case "breadcrumbs":
102+
control = new osparc.dashboard.ContextBreadcrumbs();
103+
this.bind("currentWorkspaceId", control, "currentWorkspaceId");
104+
this._add(control);
105+
break;
101106
case "edit-button":
102107
control = new qx.ui.form.MenuButton().set({
103108
appearance: "form-button-outlined",
@@ -159,6 +164,7 @@ qx.Class.define("osparc.dashboard.WorkspaceHeader", {
159164
__buildLayout: function(workspaceId) {
160165
this.getChildControl("icon");
161166
const title = this.getChildControl("title");
167+
this.getChildControl("breadcrumbs");
162168

163169
this.getChildControl("edit-button").exclude();
164170
this.resetAccessRights();

0 commit comments

Comments
 (0)