diff --git a/client/src/components/UsersModal/Item/Item.jsx b/client/src/components/UsersModal/Item/Item.jsx index d7f0c6ac..cff92e4c 100755 --- a/client/src/components/UsersModal/Item/Item.jsx +++ b/client/src/components/UsersModal/Item/Item.jsx @@ -3,6 +3,7 @@ import PropTypes from 'prop-types'; import { Button, Icon, Radio, Table } from 'semantic-ui-react'; import ActionsPopup from './ActionsPopup'; +import User from '../../User'; import styles from './Item.module.scss'; @@ -11,6 +12,7 @@ const Item = React.memo( email, username, name, + avatarUrl, organization, phone, isAdmin, @@ -34,13 +36,16 @@ const Item = React.memo( return ( + + + {name} {username || '-'} {email} - + - + - - + +
+ {t('common.name')} {t('common.username')} {t('common.email')} @@ -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}