X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/2508b089d2369bf57811f9f96c14c2ee22dd664f..62c3ba8319265118432f33ea98df116253b3e785:/services/workbench2/src/views-components/dialog-copy/dialog-process-rerun.tsx diff --git a/services/workbench2/src/views-components/dialog-copy/dialog-process-rerun.tsx b/services/workbench2/src/views-components/dialog-copy/dialog-process-rerun.tsx index 9f97b1accd..a5d8f3a0f8 100644 --- a/services/workbench2/src/views-components/dialog-copy/dialog-process-rerun.tsx +++ b/services/workbench2/src/views-components/dialog-copy/dialog-process-rerun.tsx @@ -2,38 +2,26 @@ // // 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) => () => ( + <> + + + +));