diff options
author | Gérald Niel <gerald.niel@gegeweb.org> | 2018-05-09 09:30:17 +0200 |
---|---|---|
committer | Gérald Niel <gerald.niel@gegeweb.org> | 2018-05-09 09:30:17 +0200 |
commit | acf24c7497100d84c79dc71a5c044dcde28509a1 (patch) | |
tree | 0dbe64333a097c5990c17dd82371f8914cd8dab6 /client | |
parent | 47f8de28346a7aa28425265f316dc26bf2376c45 (diff) | |
download | PeerTube-acf24c7497100d84c79dc71a5c044dcde28509a1.tar.gz PeerTube-acf24c7497100d84c79dc71a5c044dcde28509a1.tar.zst PeerTube-acf24c7497100d84c79dc71a5c044dcde28509a1.zip |
Fix #546 (I hope!)
Diffstat (limited to 'client')
-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 | } |