X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/4ec55841b965ae33aad66479bf4d4ad41e6a0b62..6dfef004d33b147cbe80bbb5ecc6922ac25f156d:/services/workbench2/src/components/details-attribute/details-attribute.tsx diff --git a/services/workbench2/src/components/details-attribute/details-attribute.tsx b/services/workbench2/src/components/details-attribute/details-attribute.tsx index 92d31b0b8e..5130db56d1 100644 --- a/services/workbench2/src/components/details-attribute/details-attribute.tsx +++ b/services/workbench2/src/components/details-attribute/details-attribute.tsx @@ -25,7 +25,8 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ label: { boxSizing: 'border-box', color: theme.palette.grey["600"], - width: '100%' + width: '100%', + marginTop: "0.4em", }, value: { boxSizing: 'border-box', @@ -95,10 +96,10 @@ export const DetailsAttribute = connect(mapStateToProps)(withStyles(styles)( if (linkUrl[0] === '/') { valueNode = {uuid}; } else { - valueNode = {uuid}; + valueNode = {uuid}; } } else if (link) { - valueNode = {value}; + valueNode = {value}; } else { valueNode = value; } @@ -115,7 +116,7 @@ interface DetailsAttributeComponentProps { export const DetailsAttributeComponent = withStyles(styles)( (props: DetailsAttributeDataProps & WithStyles & DetailsAttributeComponentProps) => - + {props.label} } ); -