X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/45d9b3d7298daf82bfb93c82e4f2f8c125c45e79..341b552800f6866fc3f73b4f6c1468425e485694:/src/validators/validators.tsx diff --git a/src/validators/validators.tsx b/src/validators/validators.tsx index 389e8cdfd1..edc472657e 100644 --- a/src/validators/validators.tsx +++ b/src/validators/validators.tsx @@ -9,10 +9,14 @@ export const TAG_KEY_VALIDATION = [require, maxLength(255)]; export const TAG_VALUE_VALIDATION = [require, maxLength(255)]; export const PROJECT_NAME_VALIDATION = [require, maxLength(255)]; -export const PROJECT_DESCRIPTION_VALIDATION = [maxLength(255)]; export const COLLECTION_NAME_VALIDATION = [require, maxLength(255)]; export const COLLECTION_DESCRIPTION_VALIDATION = [maxLength(255)]; export const COLLECTION_PROJECT_VALIDATION = [require]; -export const MOVE_TO_VALIDATION = [require]; \ No newline at end of file +export const COPY_NAME_VALIDATION = [require, maxLength(255)]; +export const COPY_FILE_VALIDATION = [require]; + +export const MOVE_TO_VALIDATION = [require]; + +export const PROCESS_NAME_VALIDATION = [require, maxLength(255)]; \ No newline at end of file