🔥 紧急修复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:
@@ -1337,7 +1337,7 @@
|
|||||||
const statusText = log.status === "success" ? "成功" : (log.status === "failed" ? "失败" : "进行中");
|
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);\">" +
|
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;\">" +
|
"<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>" +
|
"<span class=\"status-chip " + statusClass + "\">" + statusText + "</span>" +
|
||||||
"</div>" +
|
"</div>" +
|
||||||
"<div style=\"font-size: 13px; line-height: 1.6;\">" +
|
"<div style=\"font-size: 13px; line-height: 1.6;\">" +
|
||||||
|
|||||||
Reference in New Issue
Block a user