Update limits for GroupDescriptionInput

This commit is contained in:
Fedor Indutny 2021-10-05 11:47:47 -07:00 committed by GitHub
parent f974490ff0
commit d479427d88
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 45 additions and 25 deletions

View file

@ -22,10 +22,11 @@ export const GroupDescriptionInput = forwardRef<HTMLInputElement, PropsType>(
i18n={i18n}
onChange={onChangeValue}
placeholder={i18n('setGroupMetadata__group-description-placeholder')}
maxLengthCount={256}
maxLengthCount={480}
maxByteCount={8192}
ref={ref}
value={value}
whenToShowRemainingCount={150}
whenToShowRemainingCount={380}
/>
);
}