From ecf45776a09da5f8e63d0c205bdd51ed47810083 Mon Sep 17 00:00:00 2001 From: Pawel Kowalczyk Date: Tue, 30 Oct 2018 13:47:17 +0100 Subject: [PATCH] cr changes Feature #13969 Arvados-DCO-1.1-Signed-off-by: Pawel Kowalczyk --- .../advanced-tab-dialog/metadataTab.tsx | 23 ++++++++----------- 1 file changed, 10 insertions(+), 13 deletions(-) diff --git a/src/views-components/advanced-tab-dialog/metadataTab.tsx b/src/views-components/advanced-tab-dialog/metadataTab.tsx index 340149a3..788b10d3 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 - {props.items.map((it, index) => { - return ( - - {it.uuid} - {it.linkClass} - {it.name} - {it.tailUuid} - {it.headUuid} - {JSON.stringify(it.properties, null, 2)} - - ); - })} + {props.items.map((it, index) => + + {it.uuid} + {it.linkClass} + {it.name} + {it.tailUuid} + {it.headUuid} + {JSON.stringify(it.properties, null, 2)} + + )} ); \ No newline at end of file -- 2.30.2