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 497b23c commit c1f2d05Copy full SHA for c1f2d05
services/static-webserver/client/source/class/osparc/store/Groups.js
@@ -94,8 +94,8 @@ qx.Class.define("osparc.store.Groups", {
94
this.setGroupMe(groupMe);
95
const myAuthData = osparc.auth.Data.getInstance();
96
groupMe.set({
97
- label: osparc.data.model.User.namesToLabel(myAuthData.getFirstName(), myAuthData.getLastName()),
98
- description: myAuthData.getEmail(),
+ label: myAuthData.getUsername(),
+ description: `${myAuthData.getFirstName()} ${myAuthData.getLastName()} - ${myAuthData.getEmail()}`,
99
thumbnail: osparc.data.model.User.emailToThumbnail(myAuthData.getEmail()),
100
})
101
return orgs;
0 commit comments