X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/dd0e60751f2551d78344283105e8c91adb9c3e19..017ab19b42969ed662d11291d399294c8f231a4e:/src/views-components/resource-properties-form/property-chip.tsx diff --git a/src/views-components/resource-properties-form/property-chip.tsx b/src/views-components/resource-properties-form/property-chip.tsx index f25deb70eb..24b5c0a96d 100644 --- a/src/views-components/resource-properties-form/property-chip.tsx +++ b/src/views-components/resource-properties-form/property-chip.tsx @@ -2,15 +2,15 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from 'react'; +import React from 'react'; import { Chip } from '@material-ui/core'; import { connect } from 'react-redux'; -import { RootState } from '~/store/store'; -import * as CopyToClipboard from 'react-copy-to-clipboard'; -import { getVocabulary } from '~/store/vocabulary/vocabulary-selectors'; +import { RootState } from 'store/store'; +import CopyToClipboard from 'react-copy-to-clipboard'; +import { getVocabulary } from 'store/vocabulary/vocabulary-selectors'; import { Dispatch } from 'redux'; -import { snackbarActions, SnackbarKind } from '~/store/snackbar/snackbar-actions'; -import { getTagValueLabel, getTagKeyLabel, Vocabulary } from '~/models/vocabulary'; +import { snackbarActions, SnackbarKind } from 'store/snackbar/snackbar-actions'; +import { getTagValueLabel, getTagKeyLabel, Vocabulary } from 'models/vocabulary'; interface PropertyChipComponentDataProps { propKey: string; @@ -51,8 +51,8 @@ export const PropertyChipComponent = connect(mapStateToProps, mapDispatchToProps } ); -export const getPropertyChip = (k:string, v:string, handleDelete:any, className:string) => +export const getPropertyChip = (k: string, v: string, handleDelete: any, className: string) => ;