From 7fb42cc9805d188f21fec0aa0a85bbf735b574ba Mon Sep 17 00:00:00 2001 From: avashilling <165050625+avashilling@users.noreply.github.com> Date: Thu, 31 Jul 2025 13:51:47 -0400 Subject: [PATCH] fix: limit redaction message (#3600) * fix: limit redaction message Doesn't do much since redaction messages aren't currently shown, but will limit them to a reasonable length if they're ever added back * add pangea tags --- lib/pages/chat/chat.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/pages/chat/chat.dart b/lib/pages/chat/chat.dart index c27a890f0..7629e5685 100644 --- a/lib/pages/chat/chat.dart +++ b/lib/pages/chat/chat.dart @@ -1354,6 +1354,9 @@ class ChatController extends State message: L10n.of(context).redactMessageDescription, isDestructive: true, hintText: L10n.of(context).optionalRedactReason, + // #Pangea + maxLength: 255, + // Pangea# okLabel: L10n.of(context).remove, cancelLabel: L10n.of(context).cancel, // #Pangea