X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/97de0bf90660e72220f350483981e35d53a5998f..0ca47168549500d98d98354abdddb586629aeae5:/src/views-components/dialog-forms/partial-copy-collection-dialog.ts diff --git a/src/views-components/dialog-forms/partial-copy-collection-dialog.ts b/src/views-components/dialog-forms/partial-copy-collection-dialog.ts index 16f8275e..3630ffb7 100644 --- a/src/views-components/dialog-forms/partial-copy-collection-dialog.ts +++ b/src/views-components/dialog-forms/partial-copy-collection-dialog.ts @@ -4,9 +4,10 @@ import { compose } from "redux"; import { reduxForm } from 'redux-form'; -import { withDialog, } from '~/store/dialog/with-dialog'; -import { CollectionPartialCopyFormData, copyCollectionPartial, COLLECTION_PARTIAL_COPY_FORM_NAME } from '~/store/collections/collection-partial-copy-actions'; -import { DialogCollectionPartialCopy } from "~/views-components/dialog-copy/dialog-collection-partial-copy"; +import { withDialog, } from 'store/dialog/with-dialog'; +import { CollectionPartialCopyFormData, copyCollectionPartial, COLLECTION_PARTIAL_COPY_FORM_NAME } from 'store/collections/collection-partial-copy-actions'; +import { DialogCollectionPartialCopy } from "views-components/dialog-copy/dialog-collection-partial-copy"; +import { pickerId } from "store/tree-picker/picker-id"; export const PartialCopyCollectionDialog = compose( @@ -16,4 +17,6 @@ export const PartialCopyCollectionDialog = compose( onSubmit: (data, dispatch) => { dispatch(copyCollectionPartial(data)); } - }))(DialogCollectionPartialCopy); \ No newline at end of file + }), + pickerId(COLLECTION_PARTIAL_COPY_FORM_NAME), +)(DialogCollectionPartialCopy); \ No newline at end of file