diff --git a/space/core/components/issues/peek-overview/comment/comment-detail-card.tsx b/space/core/components/issues/peek-overview/comment/comment-detail-card.tsx index 70fcedd0a..56a71be5a 100644 --- a/space/core/components/issues/peek-overview/comment/comment-detail-card.tsx +++ b/space/core/components/issues/peek-overview/comment/comment-detail-card.tsx @@ -144,6 +144,9 @@ export const CommentCard: React.FC = observer((props) => { ref={showEditorRef} id={comment.id} initialValue={comment.comment_html} + displayConfig={{ + fontSize: "small-font", + }} /> diff --git a/web/core/components/comments/comment-card.tsx b/web/core/components/comments/comment-card.tsx index 698e1ddf3..1831af4a0 100644 --- a/web/core/components/comments/comment-card.tsx +++ b/web/core/components/comments/comment-card.tsx @@ -162,6 +162,9 @@ export const CommentCard: FC = observer((props) => { }} projectId={projectId?.toString() ?? ""} parentClassName="p-2" + displayConfig={{ + fontSize: "small-font", + }} />
@@ -209,6 +212,9 @@ export const CommentCard: FC = observer((props) => { workspaceSlug={workspaceSlug} containerClassName="!py-1" projectId={(projectId as string) ?? ""} + displayConfig={{ + fontSize: "small-font", + }} />
diff --git a/web/core/components/comments/comment-create.tsx b/web/core/components/comments/comment-create.tsx index dc74a9a12..aae88c6c1 100644 --- a/web/core/components/comments/comment-create.tsx +++ b/web/core/components/comments/comment-create.tsx @@ -137,6 +137,9 @@ export const CommentCreate: FC = observer((props) => { }} showToolbarInitially={showToolbarInitially} parentClassName="p-2" + displayConfig={{ + fontSize: "small-font", + }} /> )} /> diff --git a/web/core/components/workspace-notifications/sidebar/notification-card/content.tsx b/web/core/components/workspace-notifications/sidebar/notification-card/content.tsx index feb8c373c..7d58b3a8f 100644 --- a/web/core/components/workspace-notifications/sidebar/notification-card/content.tsx +++ b/web/core/components/workspace-notifications/sidebar/notification-card/content.tsx @@ -102,6 +102,9 @@ export const NotificationContent: FC<{ workspaceId={workspaceId} workspaceSlug={workspaceSlug} projectId={projectId} + displayConfig={{ + fontSize: "small-font", + }} /> )}