mirror of
https://github.com/scm-manager/scm-manager.git
synced 2025-11-13 00:45:44 +01:00
correct password input of user creation
This commit is contained in:
@@ -13,5 +13,5 @@ export const isDisplayNameValid = (displayName: string) => {
|
|||||||
return false;
|
return false;
|
||||||
};
|
};
|
||||||
export const isPasswordValid = (password: string) => {
|
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