aboutsummaryrefslogtreecommitdiff
path: root/modern/src/settings/GroupsPage.js
diff options
context:
space:
mode:
Diffstat (limited to 'modern/src/settings/GroupsPage.js')
-rw-r--r--modern/src/settings/GroupsPage.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/modern/src/settings/GroupsPage.js b/modern/src/settings/GroupsPage.js
index 7526563b..1ec63b0c 100644
--- a/modern/src/settings/GroupsPage.js
+++ b/modern/src/settings/GroupsPage.js
@@ -13,7 +13,7 @@ import CollectionActions from './components/CollectionActions';
const useStyles = makeStyles((theme) => ({
columnAction: {
width: '1%',
- padding: theme.spacing(0, 1),
+ paddingRight: theme.spacing(1),
},
}));
@@ -39,17 +39,17 @@ const GroupsPage = () => {
<Table>
<TableHead>
<TableRow>
- <TableCell className={classes.columnAction} />
<TableCell>{t('sharedName')}</TableCell>
+ <TableCell className={classes.columnAction} />
</TableRow>
</TableHead>
<TableBody>
{items.map((item) => (
<TableRow key={item.id}>
+ <TableCell>{item.name}</TableCell>
<TableCell className={classes.columnAction} padding="none">
<CollectionActions itemId={item.id} editPath="/settings/group" endpoint="groups" setTimestamp={setTimestamp} />
</TableCell>
- <TableCell>{item.name}</TableCell>
</TableRow>
))}
</TableBody>