From 05f522ac86f37385c0707e5fa32620969fd19c3d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=B5=AA=E5=AD=90?= Date: Sat, 16 May 2026 20:01:51 +0800 Subject: [PATCH] =?UTF-8?q?fix=20=E8=AF=84=E8=AE=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/components/Comments.astro | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/src/components/Comments.astro b/src/components/Comments.astro index 2c74c2f..b09d335 100644 --- a/src/components/Comments.astro +++ b/src/components/Comments.astro @@ -218,7 +218,7 @@ const showPrivate = isOptionOn('open_private_message'); var uaHtml = uaIcons(c); return '' + - '
  • ' + + '
  • ' + '
    ' + '
    ' + '
    ' + @@ -237,19 +237,22 @@ const showPrivate = isOptionOn('open_private_message'); '' + '' + '
    ' + - '回复' + + '回复' + '
    ' + '
    ' + '' + uaHtml + - ' ' + - ' ' + + ' ' + + ' ' + '' + '
    ' + '
    ' + '' + '
    ' + - '
    ' + (c.comment || '') + '
    ' + + '
    ' + + (c.ruser ? '@' + escapeHtml(c.ruser) + ' ' : '') + + (c.comment || '') + + '
    ' + '
    ' + '
    ' + '' +