From 398cd5c9cffce65ee0e758219015303ac5d2ec84 Mon Sep 17 00:00:00 2001 From: root Date: Wed, 10 Dec 2025 17:20:37 +0800 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A5=20=E7=B4=A7=E6=80=A5=E4=BF=AE?= =?UTF-8?q?=E5=A4=8DJavaScript=E8=AF=AD=E6=B3=95=E9=94=99=E8=AF=AF?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 问题:第1340行有多余的引号导致语法错误 修复:删除多余的引号 position: templates/index.html:1340 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- templates/index.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/templates/index.html b/templates/index.html index 99f98eb..206daab 100644 --- a/templates/index.html +++ b/templates/index.html @@ -1337,7 +1337,7 @@ const statusText = log.status === "success" ? "成功" : (log.status === "failed" ? "失败" : "进行中"); html += "
" + "
" + - "" + (log.created_at || "") + "" + + "" + (log.created_at || "") + "" + "" + statusText + "" + "
" + "
" +