Skip to content

Commit 8d15a04

Browse files
committed
minor
1 parent 0064fa6 commit 8d15a04

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -171,18 +171,6 @@ qx.Class.define("osparc.dashboard.ResourceContainerManager", {
171171
return this.__nonGroupedContainer;
172172
},
173173

174-
__createGroupContainer: function(groupId, headerLabel, headerColor = "text") {
175-
const groupContainer = new osparc.dashboard.GroupedCardContainer().set({
176-
groupId: groupId.toString(),
177-
headerLabel,
178-
headerIcon: "",
179-
headerColor,
180-
visibility: "excluded"
181-
});
182-
this.__groupedContainersList.push(groupContainer);
183-
return groupContainer;
184-
},
185-
186174
areMoreResourcesRequired: function(loadingResourcesBtn) {
187175
if (this.__nonGroupedContainer) {
188176
return this.__nonGroupedContainer.areMoreResourcesRequired(loadingResourcesBtn);
@@ -343,6 +331,18 @@ qx.Class.define("osparc.dashboard.ResourceContainerManager", {
343331
return flatList;
344332
},
345333

334+
__createGroupContainer: function(groupId, headerLabel, headerColor = "text") {
335+
const groupContainer = new osparc.dashboard.GroupedCardContainer().set({
336+
groupId: groupId.toString(),
337+
headerLabel,
338+
headerIcon: "",
339+
headerColor,
340+
visibility: "excluded"
341+
});
342+
this.__groupedContainersList.push(groupContainer);
343+
return groupContainer;
344+
},
345+
346346
reloadCards: function(resourceType) {
347347
this.__rebuildLayout(resourceType);
348348

0 commit comments

Comments
 (0)