mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-03 23:00:14 -05:00
Fixed missing initials on staff invites' avatars (#20948)
DES-775 - Initials were missing on avatars in the invite list of Settings/Staff
This commit is contained in:
parent
1dc2a3bcfd
commit
5be65b7e21
1 changed files with 1 additions and 1 deletions
|
@ -183,7 +183,7 @@ const InvitesUserList: React.FC<InviteListProps> = ({users}) => {
|
|||
<ListItem
|
||||
key={user.id}
|
||||
action={<UserInviteActions invite={user} />}
|
||||
avatar={(<Avatar bgColor={generateAvatarColor((user.email))} image={''} label={''} labelColor='white' />)}
|
||||
avatar={(<Avatar bgColor={generateAvatarColor((user.email))} image={''} label={user.email.charAt(0).toUpperCase()} labelColor='white' />)}
|
||||
className='min-h-[64px]'
|
||||
detail={user.role}
|
||||
hideActions={true}
|
||||
|
|
Loading…
Add table
Reference in a new issue