From c602d2284b6891c2e5da88e0219a9a135aea8228 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=B0=8F=E6=A9=98?= Date: Sat, 9 May 2026 10:58:33 +0000 Subject: [PATCH] fix(dashboard): pass content as children to ReactMarkdown MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Self-closing renders nothing — need children. 小橘 --- packages/workflow-dashboard/src/components/markdown.tsx | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/packages/workflow-dashboard/src/components/markdown.tsx b/packages/workflow-dashboard/src/components/markdown.tsx index 453da12..707c682 100644 --- a/packages/workflow-dashboard/src/components/markdown.tsx +++ b/packages/workflow-dashboard/src/components/markdown.tsx @@ -100,8 +100,9 @@ export function Markdown({ content }: { content: string }) { ); }, - }} - /> + }}> + {content} + ); }