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/ComputedAttributesPage.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'modern/src/settings/ComputedAttributesPage.js') 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 = () => { - {administrator && } {t('sharedDescription')} {t('sharedAttribute')} {t('sharedExpression')} {t('sharedType')} + {administrator && } {items.map((item) => ( + {item.description} + {item.attribute} + {item.expression} + {item.type} {administrator && ( )} - {item.description} - {item.attribute} - {item.expression} - {item.type} ))} -- cgit v1.2.3