15766: Clicking on a property chip copies its text to clipboard
[arvados-workbench2.git] / src / views-components / form-fields / project-form-fields.tsx
index 5bf59c7ea56c00d5b5d539780a41688593a16f08..8243cfe364d45cee3d05fde0b3637a7b13a3838f 100644 (file)
@@ -5,7 +5,7 @@
 import * as React from "react";
 import { Field } from "redux-form";
 import { TextField, RichEditorTextField } from "~/components/text-field/text-field";
-import { PROJECT_NAME_VALIDATION, PROJECT_DESCRIPTION_VALIDATION } from "~/validators/validators";
+import { PROJECT_NAME_VALIDATION } from "~/validators/validators";
 
 export const ProjectNameField = () =>
     <Field
@@ -19,5 +19,4 @@ export const ProjectDescriptionField = () =>
     <Field
         name='description'
         component={RichEditorTextField}
-        validate={PROJECT_DESCRIPTION_VALIDATION}
         label="Description - optional" />;