X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/a0d117b3fae1311a6eb98612946be8966bdf2cf5..2bd3f83db9934198b658b7035a7be65017b754d9:/src/views-components/dialog-forms/copy-collection-dialog.ts diff --git a/src/views-components/dialog-forms/copy-collection-dialog.ts b/src/views-components/dialog-forms/copy-collection-dialog.ts index bc0bb31610..eb1f26153f 100644 --- a/src/views-components/dialog-forms/copy-collection-dialog.ts +++ b/src/views-components/dialog-forms/copy-collection-dialog.ts @@ -3,13 +3,13 @@ // SPDX-License-Identifier: AGPL-3.0 import { compose } from "redux"; -import { withDialog } from "~/store/dialog/with-dialog"; -import { reduxForm } from 'redux-form'; -import { COLLECTION_COPY_FORM_NAME } from '~/store/collections/collection-copy-actions'; -import { DialogCopy } from "~/views-components/dialog-copy/dialog-copy"; -import { copyCollection } from '~/store/workbench/workbench-actions'; -import { CopyFormDialogData } from '~/store/copy-dialog/copy-dialog'; -import { pickerId } from '~/store/tree-picker/picker-id'; +import { withDialog } from "store/dialog/with-dialog"; +import { reduxForm } from "redux-form"; +import { COLLECTION_COPY_FORM_NAME } from "store/collections/collection-copy-actions"; +import { DialogCopy } from "views-components/dialog-copy/dialog-copy"; +import { copyCollection } from "store/workbench/workbench-actions"; +import { CopyFormDialogData } from "store/copy-dialog/copy-dialog"; +import { pickerId } from "store/tree-picker/picker-id"; export const CopyCollectionDialog = compose( withDialog(COLLECTION_COPY_FORM_NAME), @@ -18,7 +18,7 @@ export const CopyCollectionDialog = compose( touchOnChange: true, onSubmit: (data, dispatch) => { dispatch(copyCollection(data)); - } + }, }), - pickerId(COLLECTION_COPY_FORM_NAME), -)(DialogCopy); \ No newline at end of file + pickerId(COLLECTION_COPY_FORM_NAME) +)(DialogCopy);