From 730e412eeb0a4ca7a2640ae90645441a16ec467f Mon Sep 17 00:00:00 2001 From: Alexander Zinchuk Date: Tue, 1 Nov 2022 18:53:32 +0100 Subject: [PATCH] Chat: Fix broken layout for multiline draft --- src/components/left/main/Chat.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/left/main/Chat.tsx b/src/components/left/main/Chat.tsx index 5a67c6dfb..80da7e523 100644 --- a/src/components/left/main/Chat.tsx +++ b/src/components/left/main/Chat.tsx @@ -250,7 +250,7 @@ const Chat: FC = ({ return (

{lang('Draft')} - {renderTextWithEntities(draft.text, draft.entities)} + {renderTextWithEntities(draft.text, draft.entities, undefined, undefined, undefined, undefined, true)}

); }