Skip to content

Commit

Permalink
User report CSV details field will be read by humans, so make it more…
Browse files Browse the repository at this point in the history
… readable.
  • Loading branch information
svenaas committed Oct 4, 2023
1 parent f2f905f commit dc042eb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/admin/controllers/user.js
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ module.exports = wrapHandlers({
},
{
label: 'Details',
value: (user => user.OrganizationRoles.map(orgRole => `${orgRole.Organization.name}: ${orgRole.Role.name}`).join('|')),
value: (user => user.OrganizationRoles.map(orgRole => `${orgRole.Organization.name}: ${orgRole.Role.name}`).join(', ')),
},
{
label: 'Created',
Expand Down

0 comments on commit dc042eb

Please sign in to comment.