Skip to content

Commit

Permalink
minor
Browse files Browse the repository at this point in the history
  • Loading branch information
odeimaiz committed Dec 6, 2024
1 parent 497b23c commit c1f2d05
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -94,8 +94,8 @@ qx.Class.define("osparc.store.Groups", {
this.setGroupMe(groupMe);
const myAuthData = osparc.auth.Data.getInstance();
groupMe.set({
label: osparc.data.model.User.namesToLabel(myAuthData.getFirstName(), myAuthData.getLastName()),
description: myAuthData.getEmail(),
label: myAuthData.getUsername(),
description: `${myAuthData.getFirstName()} ${myAuthData.getLastName()} - ${myAuthData.getEmail()}`,
thumbnail: osparc.data.model.User.emailToThumbnail(myAuthData.getEmail()),
})
return orgs;
Expand Down

0 comments on commit c1f2d05

Please sign in to comment.