From db12c89731bb3d262972032f456369f45a0fc913 Mon Sep 17 00:00:00 2001 From: Gigi Date: Fri, 17 Oct 2025 12:49:28 +0200 Subject: [PATCH] ui(debug): add character-wrap (break-all) to ciphertext textboxes --- src/components/Debug.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Debug.tsx b/src/components/Debug.tsx index 0d085f8a..4f43225a 100644 --- a/src/components/Debug.tsx +++ b/src/components/Debug.tsx @@ -171,7 +171,7 @@ const Debug: React.FC = () => { } const CodeBox = ({ value }: { value: string }) => ( -
+
{value || '—'}
)