Fix bug
This commit is contained in:
parent
bc06c66407
commit
2b02655a3f
2 changed files with 2 additions and 2 deletions
|
@ -100,7 +100,7 @@ export function validatePassword(password: string): boolean {
|
|||
}
|
||||
|
||||
export function isValidName(name: string): boolean {
|
||||
return typeof name == 'string' && name.length < 30 && name.trim() != '';
|
||||
return name === null || (typeof name == 'string' && name.length < 30 && name.trim() != '');
|
||||
}
|
||||
|
||||
export function isValidDescription(description: string): boolean {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue