From d8adc0afe93e32852233708c37aaeb8724462f41 Mon Sep 17 00:00:00 2001 From: Yarden Shoham Date: Tue, 22 Nov 2022 12:21:12 +0200 Subject: [PATCH] feat: extend validation config max length (#523) --- web/src/pages/Auth.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/src/pages/Auth.tsx b/web/src/pages/Auth.tsx index 227361a4..ccc3b0ec 100644 --- a/web/src/pages/Auth.tsx +++ b/web/src/pages/Auth.tsx @@ -11,7 +11,7 @@ import "../less/auth.less"; const validateConfig: ValidatorConfig = { minLength: 4, - maxLength: 24, + maxLength: 320, noSpace: true, noChinese: true, };