From 0542f555bae9ed4c44bac0bd78020a74c0478a13 Mon Sep 17 00:00:00 2001 From: Dotta Date: Wed, 4 Mar 2026 12:20:29 -0600 Subject: [PATCH] Fix markdown list markers in editor and comment rendering --- ui/src/components/MarkdownBody.tsx | 2 +- ui/src/components/MarkdownEditor.tsx | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ui/src/components/MarkdownBody.tsx b/ui/src/components/MarkdownBody.tsx index 7ebd77c0..c1eb59ac 100644 --- a/ui/src/components/MarkdownBody.tsx +++ b/ui/src/components/MarkdownBody.tsx @@ -38,7 +38,7 @@ export function MarkdownBody({ children, className }: MarkdownBodyProps) { return (
onBlur={() => onBlur?.()} className={cn("paperclip-mdxeditor", !bordered && "paperclip-mdxeditor--borderless")} contentEditableClassName={cn( - "paperclip-mdxeditor-content focus:outline-none", + "paperclip-mdxeditor-content focus:outline-none [&_ul]:list-disc [&_ul]:pl-5 [&_ol]:list-decimal [&_ol]:pl-5 [&_li]:list-item", contentClassName, )} overlayContainer={containerRef.current}