X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/b4adbf55b9a1950d70e2e44c28efb13eb4d0f077..4476731a9ec985c5abd97da453978af0dfa4406b:/src/views-components/dialog-create/dialog-collection-create-selected.tsx diff --git a/src/views-components/dialog-create/dialog-collection-create-selected.tsx b/src/views-components/dialog-create/dialog-collection-create-selected.tsx deleted file mode 100644 index ad684d78..00000000 --- a/src/views-components/dialog-create/dialog-collection-create-selected.tsx +++ /dev/null @@ -1,60 +0,0 @@ -// Copyright (C) The Arvados Authors. All rights reserved. -// -// SPDX-License-Identifier: AGPL-3.0 - -import * as React from "react"; -import { InjectedFormProps, Field, WrappedFieldProps } from "redux-form"; -import { Dialog, DialogTitle, DialogContent, DialogActions, Button, CircularProgress } from "@material-ui/core"; -import { WithDialogProps } from "~/store/dialog/with-dialog"; -import { TextField } from "~/components/text-field/text-field"; -import { COLLECTION_NAME_VALIDATION, COLLECTION_DESCRIPTION_VALIDATION, COLLECTION_PROJECT_VALIDATION } from "~/validators/validators"; -import { ProjectTreePicker } from "../project-tree-picker/project-tree-picker"; - -export const DialogCollectionCreateWithSelected = (props: WithDialogProps & InjectedFormProps<{ name: string }>) => -
- - Create a collection - -
- - -
- -
- - - - -
-
; - -const Picker = (props: WrappedFieldProps) => -
- props.input.onChange(projectUuid)} /> -
;