From 787b893cd2bb5a6514db99912ce684989a0e0d9d Mon Sep 17 00:00:00 2001 From: Tom Moor Date: Sun, 15 Oct 2023 16:05:25 -0400 Subject: [PATCH] Increase max collection description --- shared/validations.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/validations.ts b/shared/validations.ts index 366651528..4eb1d9aac 100644 --- a/shared/validations.ts +++ b/shared/validations.ts @@ -21,7 +21,7 @@ export const AttachmentValidation = { export const CollectionValidation = { /** The maximum length of the collection description */ - maxDescriptionLength: 1000, + maxDescriptionLength: 10 * 1000, /** The maximum length of the collection name */ maxNameLength: 100,