X-Git-Url: https://git.arvados.org/arvados-workbench2.git/blobdiff_plain/4a055bfc98a5fc05cc311e2de1ab2213eec5497e..3c7e3cdc547ad5468421e1c049daa94b0d4b8bc0:/src/views-components/form-fields/process-form-fields.tsx diff --git a/src/views-components/form-fields/process-form-fields.tsx b/src/views-components/form-fields/process-form-fields.tsx index 8f55e084..d70413f6 100644 --- a/src/views-components/form-fields/process-form-fields.tsx +++ b/src/views-components/form-fields/process-form-fields.tsx @@ -2,10 +2,10 @@ // // SPDX-License-Identifier: AGPL-3.0 -import * as React from "react"; +import React from "react"; import { Field } from "redux-form"; -import { TextField } from "~/components/text-field/text-field"; -import { PROCESS_NAME_VALIDATION } from "~/validators/validators"; +import { TextField } from "components/text-field/text-field"; +import { PROCESS_NAME_VALIDATION, PROCESS_DESCRIPTION_VALIDATION } from "validators/validators"; export const ProcessNameField = () => component={TextField} validate={PROCESS_NAME_VALIDATION} label="Process Name" />; + +export const ProcessDescriptionField = () => + ;