X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/2e21cc7eeaecd3282d464c096549486b391c9461..1a3746a005fb857cc6760fde34e78cbcbb7d11e5:/src/views-components/dialog-copy/dialog-process-rerun.tsx diff --git a/src/views-components/dialog-copy/dialog-process-rerun.tsx b/src/views-components/dialog-copy/dialog-process-rerun.tsx index 9f97b1ac..2d34baf9 100644 --- a/src/views-components/dialog-copy/dialog-process-rerun.tsx +++ b/src/views-components/dialog-copy/dialog-process-rerun.tsx @@ -2,38 +2,37 @@ // // SPDX-License-Identifier: AGPL-3.0 -import React from "react"; +import React from 'react'; import { memoize } from 'lodash/fp'; import { InjectedFormProps, Field } from 'redux-form'; import { WithDialogProps } from 'store/dialog/with-dialog'; import { FormDialog } from 'components/form-dialog/form-dialog'; import { ProjectTreePickerField } from 'views-components/projects-tree-picker/tree-picker-field'; import { COPY_NAME_VALIDATION, COPY_FILE_VALIDATION } from 'validators/validators'; -import { TextField } from "components/text-field/text-field"; +import { TextField } from 'components/text-field/text-field'; import { CopyFormDialogData } from 'store/copy-dialog/copy-dialog'; import { PickerIdProp } from 'store/tree-picker/picker-id'; type ProcessRerunFormDialogProps = WithDialogProps & InjectedFormProps; -export const DialogProcessRerun = (props: ProcessRerunFormDialogProps & PickerIdProp) => - ; +export const DialogProcessRerun = (props: ProcessRerunFormDialogProps & PickerIdProp) => ( + +); -const CopyDialogFields = memoize((pickerId: string) => - () => - <> - - - ); +const CopyDialogFields = memoize((pickerId: string) => () => ( + <> + + + +)); + +export const DialogManyProcessesRerun = (props: ProcessRerunFormDialogProps & PickerIdProp) => ( + +); + +const CopyManyDialogFields = memoize((pickerId: string) => () => ( + <> + {/* */} + + +));