🔥 紧急修复JavaScript语法错误

问题:第1340行有多余的引号导致语法错误
修复:删除多余的引号

position: templates/index.html:1340

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
root
2025-12-10 17:20:37 +08:00
parent dc5f9e939b
commit 398cd5c9cf

View File

@@ -1337,7 +1337,7 @@
const statusText = log.status === "success" ? "成功" : (log.status === "failed" ? "失败" : "进行中");
html += "<div style=\"border: 1px solid var(--md-divider); border-radius: 8px; padding: 12px; background: var(--md-surface);\">" +
"<div style=\"display: flex; justify-content: space-between; align-items: center; margin-bottom: 8px;\">" +
"<span style=\"font-size: 14px; color: var(--md-on-surface-medium);\"">" + (log.created_at || "") + "</span>" +
"<span style=\"font-size: 14px; color: var(--md-on-surface-medium);\">" + (log.created_at || "") + "</span>" +
"<span class=\"status-chip " + statusClass + "\">" + statusText + "</span>" +
"</div>" +
"<div style=\"font-size: 13px; line-height: 1.6;\">" +