Skip to content

Commit 9755a2a

Browse files
committed
addNonResourceCard width
1 parent 7df91d5 commit 9755a2a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -130,10 +130,10 @@ qx.Class.define("osparc.dashboard.ResourceContainerManager", {
130130
if (this.getGroupBy()) {
131131
// it will always go to the no-group group
132132
const noGroupContainer = this.__getGroupContainer("no-group");
133-
noGroupContainer.add(card);
133+
this.__addCardToContainer(card, noGroupContainer);
134134
this.self().sortListByPriority(noGroupContainer.getContentContainer());
135135
} else {
136-
this.__nonGroupedContainer.add(card);
136+
this.__addCardToContainer(card, this.__nonGroupedContainer);
137137
this.self().sortListByPriority(this.__nonGroupedContainer);
138138
}
139139
} else {

0 commit comments

Comments
 (0)