From ba6c8ea46a53389b305498dde74a86298c497714 Mon Sep 17 00:00:00 2001 From: Anton Tananaev Date: Tue, 24 May 2022 19:18:14 -0700 Subject: Move actions to the right --- modern/src/settings/UsersPage.js | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'modern/src/settings/UsersPage.js') diff --git a/modern/src/settings/UsersPage.js b/modern/src/settings/UsersPage.js index 8f3aca46..adbbcbda 100644 --- a/modern/src/settings/UsersPage.js +++ b/modern/src/settings/UsersPage.js @@ -13,8 +13,8 @@ import CollectionActions from './components/CollectionActions'; const useStyles = makeStyles((theme) => ({ columnAction: { - width: theme.spacing(1), - padding: theme.spacing(0, 1), + width: '1%', + paddingRight: theme.spacing(1), }, })); @@ -40,23 +40,23 @@ const UsersPage = () => { - {t('sharedName')} {t('userEmail')} {t('userAdmin')} {t('sharedDisabled')} + {items.map((item) => ( - - - {item.name} {item.email} {formatBoolean(item.administrator, t)} {formatBoolean(item.disabled, t)} + + + ))} -- cgit v1.2.3