Skip to content

Commit ee05d28

Browse files
committed
tags grow
1 parent 3cea167 commit ee05d28

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

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

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -89,17 +89,16 @@ qx.Class.define("osparc.dashboard.GridButtonItem", {
8989
case "avatar-group": {
9090
const maxWidth = osparc.dashboard.GridButtonBase.ITEM_WIDTH - osparc.dashboard.GridButtonBase.PADDING * 2;
9191
control = new osparc.ui.basic.AvatarGroup(24, "left", maxWidth);
92-
this.getChildControl("body").addAt(control, this.self().BODY_POS.AVATAR_GROUP, {
93-
flex: 1,
94-
});
92+
this.getChildControl("body").addAt(control, this.self().BODY_POS.AVATAR_GROUP);
9593
break;
9694
}
9795
case "tags":
9896
control = new qx.ui.container.Composite(new qx.ui.layout.Flow(4, 4)).set({
9997
anonymous: true,
100-
alignY: "bottom",
10198
});
102-
this.getChildControl("body").addAt(control, this.self().BODY_POS.TAGS);
99+
this.getChildControl("body").addAt(control, this.self().BODY_POS.TAGS, {
100+
flex: 1,
101+
});
103102
break;
104103
case "menu-selection-stack":
105104
control = new qx.ui.container.Stack();

0 commit comments

Comments
 (0)