From 19dcbdbb51d4550a7d4c6643cc30fe0c19b3a694 Mon Sep 17 00:00:00 2001 From: mac Date: Tue, 16 Jun 2026 09:42:07 +0800 Subject: [PATCH] =?UTF-8?q?v1.3.5=20=E2=80=94=20=E4=BB=BB=E5=8A=A1?= =?UTF-8?q?=E8=A1=8C=E5=A2=9E=E5=8A=A0=E8=B4=9F=E8=B4=A3=E4=BA=BA=E5=92=8C?= =?UTF-8?q?=E6=88=AA=E6=AD=A2=E6=97=B6=E9=97=B4=E6=98=BE=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- static/app.js | 2 +- static/styles.css | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/static/app.js b/static/app.js index d8f32ba..6495219 100644 --- a/static/app.js +++ b/static/app.js @@ -240,7 +240,7 @@ function showTaskModal(projectId) { ${phases.map((phase) => { const pt = tasks.filter((t) => t.phase === phase); - return `
${phase}${pt.length}
${pt.length ? pt.map((t) => `
${t.task}
`).join("") : `
暂无任务
`}
`; + return `
${phase}${pt.length}
${pt.length ? pt.map((t) => `
${t.task}${t.owner ? `${t.owner}` : ""}${t.due_date ? `${t.due_date}` : ""}
`).join("") : `
暂无任务
`}
`; }).join("")}`; document.querySelector("#taskModal").classList.add("active"); if (window.lucide) window.lucide.createIcons(); diff --git a/static/styles.css b/static/styles.css index 07e1ee6..5f41e43 100644 --- a/static/styles.css +++ b/static/styles.css @@ -534,6 +534,7 @@ td { } .task-dot { display: flex; color: #4b4d54; } .task-name { color: #c5c6ca; font-size: 13px; } +.task-meta { color: #5a5c63; font-size: 11px; margin-left: auto; white-space: nowrap; } .task-none { color: #4b4d54; font-size: 13px; padding: 12px 14px; text-align: center; border-top: 1px solid #24272d; } .task-form { background: #141518; border: 1px solid #2a2d34; border-radius: 8px;