[ARVADOS-WORKBENCH2] updated: 1.2.0-763-gecf4577
Git user
git at public.curoverse.com
Tue Oct 30 08:47:29 EDT 2018
Summary of changes:
.../advanced-tab-dialog/metadataTab.tsx | 23 ++++++++++------------
1 file changed, 10 insertions(+), 13 deletions(-)
via ecf45776a09da5f8e63d0c205bdd51ed47810083 (commit)
from 318fb9f2f730f376bbb4fe7afec567b7ca80aabe (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit ecf45776a09da5f8e63d0c205bdd51ed47810083
Author: Pawel Kowalczyk <pawel.kowalczyk at contractors.roche.com>
Date: Tue Oct 30 13:47:17 2018 +0100
cr changes
Feature #13969
Arvados-DCO-1.1-Signed-off-by: Pawel Kowalczyk <pawel.kowalczyk at contractors.roche.com>
diff --git a/src/views-components/advanced-tab-dialog/metadataTab.tsx b/src/views-components/advanced-tab-dialog/metadataTab.tsx
index 340149a..788b10d 100644
--- a/src/views-components/advanced-tab-dialog/metadataTab.tsx
+++ b/src/views-components/advanced-tab-dialog/metadataTab.tsx
@@ -4,7 +4,6 @@
import * as React from "react";
import { Table, TableHead, TableCell, TableRow, TableBody, StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core';
-import { navigateTo } from "~/store/navigation/navigation-action";
type CssRules = 'cell';
@@ -40,18 +39,16 @@ export const MetadataTab = withStyles(styles)((props: MetadataProps & WithStyles
</TableRow>
</TableHead>
<TableBody>
- {props.items.map((it, index) => {
- return (
- <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>
- );
- })}
+ {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>
);
\ No newline at end of file
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list