X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/c7e2cfdd8df022e558fc3a8c7cbad661c4d10126..bf5703f285ed90bb3334f531ce0a46e5e00d122f:/src/views-components/advanced-tab-dialog/metadataTab.tsx diff --git a/src/views-components/advanced-tab-dialog/metadataTab.tsx b/src/views-components/advanced-tab-dialog/metadataTab.tsx index 788b10d3..1b950d24 100644 --- a/src/views-components/advanced-tab-dialog/metadataTab.tsx +++ b/src/views-components/advanced-tab-dialog/metadataTab.tsx @@ -2,7 +2,7 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from "react"; +import React from "react"; import { Table, TableHead, TableCell, TableRow, TableBody, StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core'; type CssRules = 'cell'; @@ -24,6 +24,7 @@ interface MetadataTable { interface MetadataProps { items: MetadataTable[]; + uuid: string; } export const MetadataTab = withStyles(styles)((props: MetadataProps & WithStyles) => @@ -45,8 +46,8 @@ export const MetadataTab = withStyles(styles)((props: MetadataProps & WithStyles {it.linkClass} {it.name} {it.tailUuid} - {it.headUuid} - {JSON.stringify(it.properties, null, 2)} + {it.headUuid === props.uuid ? 'this' : it.headUuid} + {JSON.stringify(it.properties)} )}