From 2e274ae144a53106012d8f4619bf518f23283f6c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maren=20S=C3=BCwer?= Date: Tue, 25 Sep 2018 13:34:56 +0200 Subject: [PATCH] correct password input of user creation --- scm-ui/src/users/components/userValidation.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scm-ui/src/users/components/userValidation.js b/scm-ui/src/users/components/userValidation.js index ca66e22405..c9460fdd50 100644 --- a/scm-ui/src/users/components/userValidation.js +++ b/scm-ui/src/users/components/userValidation.js @@ -13,5 +13,5 @@ export const isDisplayNameValid = (displayName: string) => { return false; }; export const isPasswordValid = (password: string) => { - return password.length > 6 && password.length < 32; + return password.length >= 6 && password.length < 32; };