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:
flopp999 2020-03-20 21:19:05 +01:00 committed by GitHub
parent 12bb295af1
commit 5df00abfcf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -66,6 +66,7 @@ const UserListAdminPageUnConnected: React.FC<Props> = props => {
<th></th>
<th>Login</th>
<th>Email</th>
<th>Name</th>
<th>
Seen&nbsp;
<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 && (