X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/4e3387a5939fe7e9c958710497d95057909670b5..6dfef004d33b147cbe80bbb5ecc6922ac25f156d:/services/workbench2/src/components/details-attribute/details-attribute.tsx diff --git a/services/workbench2/src/components/details-attribute/details-attribute.tsx b/services/workbench2/src/components/details-attribute/details-attribute.tsx index c10f558e77..5130db56d1 100644 --- a/services/workbench2/src/components/details-attribute/details-attribute.tsx +++ b/services/workbench2/src/components/details-attribute/details-attribute.tsx @@ -87,7 +87,7 @@ export const DetailsAttribute = connect(mapStateToProps)(withStyles(styles)( render() { const { uuidEnhancer, link, value, classes, linkToUuid, - localCluster, remoteHostsConfig, sessions, label } = this.props; + localCluster, remoteHostsConfig, sessions } = this.props; let valueNode: React.ReactNode; if (linkToUuid) { @@ -96,10 +96,10 @@ export const DetailsAttribute = connect(mapStateToProps)(withStyles(styles)( if (linkUrl[0] === '/') { valueNode = {uuid}; } else { - valueNode = {uuid}; + valueNode = {uuid}; } } else if (link) { - valueNode = {value}; + valueNode = {value}; } else { valueNode = value; }