merge master
[arvados-workbench2.git] / src / views-components / dialog-forms / copy-collection-dialog.ts
index 6a846c4d5bd199b3cddaaa778ed4980c6ed1d270..245465fa55edfc2bcb32fab615122ec42c62a90f 100644 (file)
@@ -5,8 +5,9 @@
 import { compose } from "redux";
 import { withDialog } from "~/store/dialog/with-dialog";
 import { reduxForm } from 'redux-form';
-import { COLLECTION_COPY_FORM_NAME, CollectionCopyFormDialogData, copyCollection } from '~/store/collections/collection-copy-actions';
-import { DialogCopy } from "~/views-components/dialog-copy/dialog-copy";
+import { COLLECTION_COPY_FORM_NAME, CollectionCopyFormDialogData } from '~/store/collections/collection-copy-actions';
+import { DialogCollectionCopy } from "~/views-components/dialog-copy/dialog-collection-copy";
+import { copyCollection } from '~/store/workbench/workbench-actions';
 
 export const CopyCollectionDialog = compose(
     withDialog(COLLECTION_COPY_FORM_NAME),
@@ -16,4 +17,4 @@ export const CopyCollectionDialog = compose(
             dispatch(copyCollection(data));
         }
     })
-)(DialogCopy);
\ No newline at end of file
+)(DialogCollectionCopy);
\ No newline at end of file