// Copyright (C) The Arvados Authors. All rights reserved. // // SPDX-License-Identifier: AGPL-3.0 import * as React from "react"; import { Field, InjectedFormProps, WrappedFieldProps } from "redux-form"; import { Dialog, DialogTitle, DialogContent, DialogActions, Button, CircularProgress } from "@material-ui/core"; import { WithDialogProps } from "~/store/dialog/with-dialog"; import { ProjectTreePicker } from "~/views-components/project-tree-picker/project-tree-picker"; import { MOVE_TO_VALIDATION } from "~/validators/validators"; export const MoveToDialog = (props: WithDialogProps & InjectedFormProps<{ name: string }>) =>
Move to
; const Picker = (props: WrappedFieldProps) =>
props.input.onChange(projectUuid)} />
;