Skip to content

Commit bdf40f4

Browse files
author
isopod-a
committed
increase maximum description lenght in UI
In the UI input, the number of glyphs is currently limited to 480 (with 8k max bytes). For larger groups with guidelines, more space is needed. This patch increases the number of glyphs and bytes by a factor of eight to 3840 and 65536. Signal community feature request: https://community.signalusers.org/t/expand-the-group-chat-description-or-pin-posts/65179
1 parent e80db63 commit bdf40f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ts/components/GroupDescriptionInput.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ export const GroupDescriptionInput = forwardRef<HTMLInputElement, PropsType>(
2727
placeholder={i18n(
2828
'icu:setGroupMetadata__group-description-placeholder'
2929
)}
30-
maxLengthCount={480}
31-
maxByteCount={8192}
30+
maxLengthCount={3840}
31+
maxByteCount={65536}
3232
ref={ref}
3333
value={value}
3434
whenToShowRemainingCount={380}

0 commit comments

Comments
 (0)