X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/dd315a23e98b926d4d15b9d05f1aaa1e211548a4..e1cf48a01c6f7aca509eb4aa886bfe530cd18457:/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 1fba8a40..24b5c0a9 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,7 +51,7 @@ 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) =>