Merge pull request #7214 from mattermost/MM-50324_Increase-nickname-character-limit

[MM-50324]: Increase nickname field on UI from 22 to 64 characters
This commit is contained in:
Ashish Dhama 2023-03-30 14:45:42 +05:30 committed by GitHub
commit d62c35aae1
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -214,7 +214,7 @@ const ProfileForm = ({
fieldRef={nicknameRef}
isDisabled={userProfileFields.nickname.isDisabled}
label={formatMessage(FIELDS.nickname)}
maxLength={22}
maxLength={64}
testID='edit_profile_form.nickname'
value={userInfo.nickname}
{...fieldConfig}