diff options
-rw-r--r-- | client/src/app/shared/forms/form-validators/user.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/client/src/app/shared/forms/form-validators/user.ts b/client/src/app/shared/forms/form-validators/user.ts index 095b534c0..c6b65e0df 100644 --- a/client/src/app/shared/forms/form-validators/user.ts +++ b/client/src/app/shared/forms/form-validators/user.ts | |||
@@ -65,8 +65,8 @@ export const USER_DESCRIPTION = { | |||
65 | Validators.maxLength(250) | 65 | Validators.maxLength(250) |
66 | ], | 66 | ], |
67 | MESSAGES: { | 67 | MESSAGES: { |
68 | 'required': 'Display name is required.', | 68 | 'required': 'Description is required.', |
69 | 'minlength': 'Display name must be at least 3 characters long.', | 69 | 'minlength': 'Description must be at least 3 characters long.', |
70 | 'maxlength': 'Display name cannot be more than 250 characters long.' | 70 | 'maxlength': 'Description cannot be more than 250 characters long.' |
71 | } | 71 | } |
72 | } | 72 | } |