diff options
author | Anton Tananaev <anton@traccar.org> | 2022-05-24 19:18:14 -0700 |
---|---|---|
committer | Anton Tananaev <anton@traccar.org> | 2022-05-24 19:18:14 -0700 |
commit | ba6c8ea46a53389b305498dde74a86298c497714 (patch) | |
tree | e7f24c6e9b7a2a8bc1ec3119140afcf1e47396f4 /modern/src/settings/ComputedAttributesPage.js | |
parent | bdefeb6520137831ba77b54b35a222b256c82153 (diff) | |
download | trackermap-web-ba6c8ea46a53389b305498dde74a86298c497714.tar.gz trackermap-web-ba6c8ea46a53389b305498dde74a86298c497714.tar.bz2 trackermap-web-ba6c8ea46a53389b305498dde74a86298c497714.zip |
Move actions to the right
Diffstat (limited to 'modern/src/settings/ComputedAttributesPage.js')
-rw-r--r-- | modern/src/settings/ComputedAttributesPage.js | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/modern/src/settings/ComputedAttributesPage.js b/modern/src/settings/ComputedAttributesPage.js index b754f9fe..c8e07b71 100644 --- a/modern/src/settings/ComputedAttributesPage.js +++ b/modern/src/settings/ComputedAttributesPage.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), }, })); @@ -41,25 +41,25 @@ const ComputedAttributesPage = () => { <Table> <TableHead> <TableRow> - {administrator && <TableCell className={classes.columnAction} />} <TableCell>{t('sharedDescription')}</TableCell> <TableCell>{t('sharedAttribute')}</TableCell> <TableCell>{t('sharedExpression')}</TableCell> <TableCell>{t('sharedType')}</TableCell> + {administrator && <TableCell className={classes.columnAction} />} </TableRow> </TableHead> <TableBody> {items.map((item) => ( <TableRow key={item.id}> + <TableCell>{item.description}</TableCell> + <TableCell>{item.attribute}</TableCell> + <TableCell>{item.expression}</TableCell> + <TableCell>{item.type}</TableCell> {administrator && ( <TableCell className={classes.columnAction} padding="none"> <CollectionActions itemId={item.id} editPath="/settings/attribute" endpoint="attributes/computed" setTimestamp={setTimestamp} /> </TableCell> )} - <TableCell>{item.description}</TableCell> - <TableCell>{item.attribute}</TableCell> - <TableCell>{item.expression}</TableCell> - <TableCell>{item.type}</TableCell> </TableRow> ))} </TableBody> |