Skip to content

Commit

Permalink
Add display name column
Browse files Browse the repository at this point in the history
  • Loading branch information
davwheat committed Jul 31, 2021
1 parent 5ef303e commit 536a41f
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
9 changes: 9 additions & 0 deletions js/src/admin/components/UserListPage.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -288,6 +288,15 @@ export default class UserListPage extends AdminPage {
90
);

columns.add(
'displayName',
{
name: app.translator.trans('core.admin.users.grid.columns.username.title'),
content: (user: User) => user.displayName(),
},
85
);

columns.add(
'joinDate',
{
Expand Down
3 changes: 3 additions & 0 deletions locale/core.yml
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,9 @@ core:

grid:
columns:
display_name:
title: Display name

edit_user:
button: => core.ref.edit
title: => core.ref.edit_user
Expand Down

0 comments on commit 536a41f

Please sign in to comment.