X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/5385afcada8666051658c6889c83848702497759..28a7883c373533979f2cc7c5e750221eb8f5f1ec:/src/components/details-attribute/details-attribute.tsx diff --git a/src/components/details-attribute/details-attribute.tsx b/src/components/details-attribute/details-attribute.tsx index 026157f4..92d31b0b 100644 --- a/src/components/details-attribute/details-attribute.tsx +++ b/src/components/details-attribute/details-attribute.tsx @@ -2,19 +2,19 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from 'react'; +import React from 'react'; import { connect, DispatchProp } from 'react-redux'; import Typography from '@material-ui/core/Typography'; import { StyleRulesCallback, WithStyles, withStyles } from '@material-ui/core/styles'; import { Tooltip } from '@material-ui/core'; -import { CopyIcon } from '~/components/icon/icon'; -import * as CopyToClipboard from 'react-copy-to-clipboard'; -import { ArvadosTheme } from '~/common/custom-theme'; -import * as classnames from "classnames"; +import { CopyIcon } from 'components/icon/icon'; +import CopyToClipboard from 'react-copy-to-clipboard'; +import { ArvadosTheme } from 'common/custom-theme'; +import classnames from "classnames"; import { Link } from 'react-router-dom'; -import { RootState } from "~/store/store"; -import { FederationConfig, getNavUrl } from "~/routes/routes"; -import { snackbarActions, SnackbarKind } from '~/store/snackbar/snackbar-actions'; +import { RootState } from "store/store"; +import { FederationConfig, getNavUrl } from "routes/routes"; +import { snackbarActions, SnackbarKind } from 'store/snackbar/snackbar-actions'; type CssRules = 'attribute' | 'label' | 'value' | 'lowercaseValue' | 'link' | 'copyIcon'; @@ -24,7 +24,7 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ }, label: { boxSizing: 'border-box', - color: theme.palette.grey["500"], + color: theme.palette.grey["600"], width: '100%' }, value: { @@ -42,7 +42,7 @@ const styles: StyleRulesCallback = (theme: ArvadosTheme) => ({ }, copyIcon: { marginLeft: theme.spacing.unit, - color: theme.palette.grey["500"], + color: theme.palette.grey["600"], cursor: 'pointer', display: 'inline', '& svg': { @@ -95,10 +95,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; }