Skip to content

Commit b8c2942

Browse files
committed
tap title
1 parent 5bb89d5 commit b8c2942

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

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

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,14 @@ qx.Class.define("osparc.dashboard.WorkspaceHeader", {
173173

174174
__buildLayout: function(workspaceId) {
175175
this.getChildControl("icon");
176-
const title = this.getChildControl("title");
176+
const title = this.getChildControl("title").set({
177+
cursor: "pointer"
178+
});
179+
title.addListener("tap", () => {
180+
const folderId = null;
181+
this.setCurrentFolderId(folderId);
182+
});
183+
177184
this.getChildControl("breadcrumbs");
178185

179186
this.getChildControl("edit-button").exclude();

0 commit comments

Comments
 (0)