Skip to content

Commit

Permalink
fix: aria-label for avatar list
Browse files Browse the repository at this point in the history
  • Loading branch information
atanasster committed Feb 18, 2021
1 parent f8a7897 commit 3af645c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ui/components/src/GithubAvatarList/GithubAvatarList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ export const GithubAvatarList: FC<GithubAvatarListProps> = ({
const lastIndex = Math.min(maxItems, users.length) - 1;
return (
<Box
aria-label={`avatars of ${users.join(', ')}`}
aria-label={`avatars of ${users.map(user => user.username).join(', ')}`}
sx={{
display: 'flex',
alignItems: 'center',
Expand Down

0 comments on commit 3af645c

Please sign in to comment.