1
0
Fork 0
mirror of https://github.com/plankanban/planka.git synced 2025-07-19 05:09:43 +02:00

fix: Little improvements in users modal

This commit is contained in:
Maksim Eltyshev 2022-08-17 02:00:24 +02:00
parent c3eb66913e
commit 281cb4a71b
2 changed files with 13 additions and 4 deletions

View file

@ -84,10 +84,11 @@ const UsersModal = React.memo(
context: 'title',
})}
</Modal.Header>
<Modal.Content>
<Table basic="very">
<Modal.Content scrolling>
<Table unstackable basic="very">
<Table.Header>
<Table.Row>
<Table.HeaderCell />
<Table.HeaderCell width={4}>{t('common.name')}</Table.HeaderCell>
<Table.HeaderCell width={4}>{t('common.username')}</Table.HeaderCell>
<Table.HeaderCell width={4}>{t('common.email')}</Table.HeaderCell>
@ -102,6 +103,7 @@ const UsersModal = React.memo(
email={item.email}
username={item.username}
name={item.name}
avatarUrl={item.avatarUrl}
organization={item.organization}
phone={item.phone}
isAdmin={item.isAdmin}