Skip to content

Commit 605739d

Browse files
committed
minor
1 parent 7aa66b9 commit 605739d

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

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

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,6 @@ qx.Class.define("osparc.dashboard.Dashboard", {
123123
icon: "@FontAwesome5Solid/copy/"+tabIconSize,
124124
buildLayout: this.__createTemplateBrowser
125125
});
126-
127126
tabs.push({
128127
id: "hypertoolsTab",
129128
buttonId: "hypertoolsTabBtn",

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

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -315,7 +315,16 @@ qx.Class.define("osparc.dashboard.ResourceContainerManager", {
315315
__rebuildLayout: function(resourceType) {
316316
this.__cleanAll();
317317
if (this.getGroupBy()) {
318-
const noGroupContainer = this.__createGroupContainer("no-group", "No Group", "transparent");
318+
let groupTitle = "No Group";
319+
switch (this.getGroupBy()) {
320+
case "tags":
321+
groupTitle = "Not Tagged";
322+
break;
323+
case "shared":
324+
groupTitle = "Not Shared";
325+
break;
326+
}
327+
const noGroupContainer = this.__createGroupContainer("no-group", groupTitle, "transparent");
319328
this.__groupedContainers.add(noGroupContainer);
320329
this._add(this.__groupedContainers);
321330
} else {

0 commit comments

Comments
 (0)