mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
AdminUsersTable: Fix width (#26019)
This commit is contained in:
parent
dec76b4556
commit
b06d2cf30f
@ -99,14 +99,20 @@ const renderUser = (user: UserDTO) => {
|
||||
<img className="filter-table__avatar" src={user.avatarUrl} />
|
||||
</a>
|
||||
</td>
|
||||
<td className="link-td">
|
||||
<a href={editUrl}>{user.login}</a>
|
||||
<td className="link-td max-width-10">
|
||||
<a className="ellipsis" href={editUrl} title={user.login}>
|
||||
{user.login}
|
||||
</a>
|
||||
</td>
|
||||
<td className="link-td">
|
||||
<a href={editUrl}>{user.email}</a>
|
||||
<td className="link-td max-width-10">
|
||||
<a className="ellipsis" href={editUrl} title={user.email}>
|
||||
{user.email}
|
||||
</a>
|
||||
</td>
|
||||
<td className="link-td">
|
||||
<a href={editUrl}>{user.name}</a>
|
||||
<td className="link-td max-width-10">
|
||||
<a className="ellipsis" href={editUrl} title={user.name}>
|
||||
{user.name}
|
||||
</a>
|
||||
</td>
|
||||
<td className="link-td">{user.lastSeenAtAge && <a href={editUrl}>{user.lastSeenAtAge}</a>}</td>
|
||||
<td className="link-td">
|
||||
|
Loading…
Reference in New Issue
Block a user