X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/97de0bf90660e72220f350483981e35d53a5998f..02fe86a56f080ed1d5770ad6c6856a15f50ab508:/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..37d928be 100644 --- a/src/views-components/dialog-forms/partial-copy-collection-dialog.ts +++ b/src/views-components/dialog-forms/partial-copy-collection-dialog.ts @@ -7,6 +7,7 @@ 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 { 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