mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Admin: Added Name to user list (#22939)
In Config-users Name is listed so it may also be visible in Admin-users
This commit is contained in:
parent
12bb295af1
commit
5df00abfcf
@ -66,6 +66,7 @@ const UserListAdminPageUnConnected: React.FC<Props> = props => {
|
||||
<th></th>
|
||||
<th>Login</th>
|
||||
<th>Email</th>
|
||||
<th>Name</th>
|
||||
<th>
|
||||
Seen
|
||||
<Tooltip placement="top" content="Time since user was seen using Grafana">
|
||||
@ -104,6 +105,9 @@ const renderUser = (user: UserDTO) => {
|
||||
<td className="link-td">
|
||||
<a href={editUrl}>{user.email}</a>
|
||||
</td>
|
||||
<td className="link-td">
|
||||
<a href={editUrl}>{user.name}</a>
|
||||
</td>
|
||||
<td className="link-td">{user.lastSeenAtAge && <a href={editUrl}>{user.lastSeenAtAge}</a>}</td>
|
||||
<td className="link-td">
|
||||
{user.isAdmin && (
|
||||
|
Loading…
Reference in New Issue
Block a user