properties-in-one-row
authorPawel Kowalczyk <pawel.kowalczyk@contractors.roche.com>
Tue, 6 Nov 2018 08:20:03 +0000 (09:20 +0100)
committerPawel Kowalczyk <pawel.kowalczyk@contractors.roche.com>
Tue, 6 Nov 2018 08:20:03 +0000 (09:20 +0100)
Feature #14431

Arvados-DCO-1.1-Signed-off-by: Pawel Kowalczyk <pawel.kowalczyk@contractors.roche.com>

src/views-components/advanced-tab-dialog/metadataTab.tsx

index 6a2136add3aafddbb6a70968dbd059e7d52aec75..24c065a565e0f7953d0e97b8e8acfadbba2afbb7 100644 (file)
@@ -49,7 +49,7 @@ export const MetadataTab = withStyles(styles)((props: MetadataProps & WithStyles
                     <TableCell className={props.classes.cell}>{it.name}</TableCell>
                     <TableCell className={props.classes.cell}>{props.user.length > 0 ? `User: ${props.user[0].firstName} ${props.user[0].lastName}` : it.tailUuid}</TableCell>
                     <TableCell className={props.classes.cell}>{it.headUuid === props.uuid ? 'this' : it.headUuid}</TableCell>
-                    <TableCell className={props.classes.cell}>{JSON.stringify(it.properties, null, 2)}</TableCell>
+                    <TableCell className={props.classes.cell}>{JSON.stringify(it.properties)}</TableCell>
                 </TableRow>
             )}
         </TableBody>