mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
Fix non-unique key warnings on user table (#2223)
This commit is contained in:
parent
97750d1e07
commit
433c76af04
1 changed files with 1 additions and 1 deletions
|
|
@ -493,7 +493,7 @@ export class HostDetailsPage extends Component {
|
|||
{users.map((hostUser) => {
|
||||
return (
|
||||
<HostUsersListRow
|
||||
key={`host-users-row-${hostUser.id}`}
|
||||
key={`host-users-row-${hostUser.username}`}
|
||||
hostUser={hostUser}
|
||||
/>
|
||||
);
|
||||
|
|
|
|||
Loading…
Reference in a new issue