From cce3d12f45cf52b32389f4e0fdf16f75ca55a01e Mon Sep 17 00:00:00 2001 From: Djordje Vlaisavljevic Date: Thu, 2 Nov 2023 19:54:48 +0000 Subject: [PATCH] Made expertise and comment body text wrap when necessary refs https://github.com/TryGhost/Product/issues/4045 --- apps/comments-ui/src/components/content/Comment.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/comments-ui/src/components/content/Comment.tsx b/apps/comments-ui/src/components/content/Comment.tsx index 405931fb72..efd01664ad 100644 --- a/apps/comments-ui/src/components/content/Comment.tsx +++ b/apps/comments-ui/src/components/content/Comment.tsx @@ -140,7 +140,7 @@ const MemberExpertise: React.FC<{comment: Comment}> = ({comment}) => { } return ( - {memberExpertise}· + {memberExpertise}· ); }; @@ -225,7 +225,7 @@ const CommentBody: React.FC<{html: string}> = ({html}) => { const dangerouslySetInnerHTML = {__html: html}; return (
-

+

); };