changed names and paths for files
[arvados-workbench2.git] / src / views-components / dialog-forms / static / git-logo.png
diff --git a/src/views-components/copy-dialog/copy-collection-dialog.tsx b/src/views-components/copy-dialog/copy-collection-dialog.tsx
deleted file mode 100644 (file)
index d988622..0000000
+++ /dev/null
@@ -1,20 +0,0 @@
-// Copyright (C) The Arvados Authors. All rights reserved.
-//
-// 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_DIALOG, CollectionCopyFormDialogData } from '~/store/collection-copy-dialog/collection-copy-dialog';
-import { CopyFormDialog } from "~/views-components/copy-dialog/copy-dialog";
-import { copyCollection } from '~/store/collection-copy-dialog/collection-copy-dialog';
-
-export const CollectionCopyDialog = compose(
-    withDialog(COLLECTION_COPY_DIALOG),
-    reduxForm<CollectionCopyFormDialogData>({
-        form: COLLECTION_COPY_DIALOG,
-        onSubmit: (data, dispatch) => {
-            dispatch(copyCollection(data));
-        }
-    })
-)(CopyFormDialog);
\ No newline at end of file