Skip to content

Commit f1428f8

Browse files
committed
minor
1 parent b0a466c commit f1428f8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

services/static-webserver/client/source/class/osparc/navigation/NavigationBar.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ qx.Class.define("osparc.navigation.NavigationBar", {
121121
this.getChildControl("read-only-info");
122122

123123
// right-items
124+
this.getChildControl("avatar-group");
124125
this.getChildControl("tasks-button");
125126
if (osparc.product.Utils.showComputationalActivity()) {
126127
this.getChildControl("jobs-button");
@@ -237,9 +238,9 @@ qx.Class.define("osparc.navigation.NavigationBar", {
237238
break;
238239
}
239240
case "avatar-group": {
240-
const maxWidth = osparc.WindowSizeTracker.getInstance().isCompactVersion() ? 150 : 300;
241+
const maxWidth = osparc.WindowSizeTracker.getInstance().isCompactVersion() ? 80 : 150;
241242
control = new osparc.ui.basic.AvatarGroup(32, "right", maxWidth);
242-
this.getChildControl("right-items").addAt(control);
243+
this.getChildControl("right-items").add(control);
243244
break;
244245
}
245246
case "tasks-button":

0 commit comments

Comments
 (0)