We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5bb89d5 commit b8c2942Copy full SHA for b8c2942
services/static-webserver/client/source/class/osparc/dashboard/WorkspaceHeader.js
@@ -173,7 +173,14 @@ qx.Class.define("osparc.dashboard.WorkspaceHeader", {
173
174
__buildLayout: function(workspaceId) {
175
this.getChildControl("icon");
176
- const title = this.getChildControl("title");
+ const title = this.getChildControl("title").set({
177
+ cursor: "pointer"
178
+ });
179
+ title.addListener("tap", () => {
180
+ const folderId = null;
181
+ this.setCurrentFolderId(folderId);
182
183
+
184
this.getChildControl("breadcrumbs");
185
186
this.getChildControl("edit-button").exclude();
0 commit comments