fix comments on activities page.

This commit is contained in:
2025-07-04 16:16:39 +08:00
parent 549c2d48d6
commit 793d78e1b1
4 changed files with 13 additions and 18 deletions

View File

@@ -269,7 +269,7 @@ function DeleteCommentDialog({
);
}
function CommentContent({ content }: { content: string }) {
export function CommentContent({ content }: { content: string }) {
const lines = content.split("\n");
for (let i = 0; i < lines.length; i++) {
let line = lines[i];