mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-12 16:35:45 +01:00
correct password input of user creation
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user