Merge branch 'master'
[arvados.git] / src / views-components / advanced-tab-dialog / metadataTab.tsx
index eea438d7e8793478b31c9a4a2868e635106c4b70..788b10d3a01ca26e4a311f0cda71c4088ae55db4 100644 (file)
@@ -17,8 +17,8 @@ interface MetadataTable {
     uuid: string;
     linkClass: string;
     name: string;
-    tail: string;
-    head: string;
+    tailUuid: string;
+    headUuid: string;
     properties: any;
 }
 
@@ -26,7 +26,6 @@ interface MetadataProps {
     items: MetadataTable[];
 }
 
-
 export const MetadataTab = withStyles(styles)((props: MetadataProps & WithStyles<CssRules>) =>
     <Table>
         <TableHead>
@@ -40,21 +39,16 @@ export const MetadataTab = withStyles(styles)((props: MetadataProps & WithStyles
             </TableRow>
         </TableHead>
         <TableBody>
-            {props.items.map((it: any, index: number) => {
-                return (
-                    <TableRow key={index}>
-                        {tableCell(it.uuid, props.classes)}
-                        {tableCell(it.linkClass, props.classes)}
-                        {tableCell(it.name, props.classes)}
-                        {tableCell(it.tailUuid, props.classes)}
-                        {tableCell(it.headUuid, props.classes)}
-                        {tableCell(JSON.stringify(it.properties, null, 2), props.classes)}
-                    </TableRow>
-                );
-            })}
+            {props.items.map((it, index) =>
+                <TableRow key={index}>
+                    <TableCell className={props.classes.cell}>{it.uuid}</TableCell>
+                    <TableCell className={props.classes.cell}>{it.linkClass}</TableCell>
+                    <TableCell className={props.classes.cell}>{it.name}</TableCell>
+                    <TableCell className={props.classes.cell}>{it.tailUuid}</TableCell>
+                    <TableCell className={props.classes.cell}>{it.headUuid}</TableCell>
+                    <TableCell className={props.classes.cell}>{JSON.stringify(it.properties, null, 2)}</TableCell>
+                </TableRow>
+            )}
         </TableBody>
     </Table>
-);
-
-const tableCell = (value: string, classes: any) =>
-    <TableCell className={classes.cell}>{value}</TableCell>;
\ No newline at end of file
+);
\ No newline at end of file