We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11bb378 commit b01ecbaCopy full SHA for b01ecba
services/static-webserver/client/source/class/osparc/ui/basic/AvatarGroup.js
@@ -53,7 +53,10 @@ qx.Class.define("osparc.ui.basic.AvatarGroup", {
53
__onGlobalPointerMove: null,
54
55
setUserGroupIds: function(userGroupIds) {
56
- if (JSON.stringify(userGroupIds) === JSON.stringify(this.__userGroupIds)) {
+ if (
57
+ userGroupIds.length &&
58
+ JSON.stringify(userGroupIds) === JSON.stringify(this.__userGroupIds)
59
+ ) {
60
return;
61
}
62
this.__userGroupIds = userGroupIds || [];
0 commit comments