added avatar overview for user avatar

main
alex 2023-06-28 16:14:11 +02:00
parent 1437acd2be
commit 7ba5165c22
1 changed files with 10 additions and 1 deletions

View File

@ -4,6 +4,7 @@ import {
Button,
Divider,
Popconfirm,
Popover,
Space,
Table,
Tooltip,
@ -123,7 +124,15 @@ export default function GroupTaskTableList({
key: groupTask.Id,
creator: (
<>
<MyAvatar avatar={user?.Avatar} /> {user?.Username}
<Popover
placement="right"
trigger="hover"
content={<MyAvatar avatar={user?.Avatar} avatarWidth={256} />}
>
<>
<MyAvatar avatar={user?.Avatar} /> {user?.Username}
</>
</Popover>
</>
),
groupName: groupTask.GroupName,