From 289529dc735bf487e87047ba8c6b5141a68470d8 Mon Sep 17 00:00:00 2001 From: mac Date: Tue, 16 Jun 2026 09:44:40 +0800 Subject: [PATCH] =?UTF-8?q?v1.3.6=20=E2=80=94=20=E5=90=88=E5=B9=B6?= =?UTF-8?q?=E8=B4=9F=E8=B4=A3=E4=BA=BA=E4=B8=8E=E6=88=AA=E6=AD=A2=E6=97=B6?= =?UTF-8?q?=E9=97=B4=E5=88=B0=E5=90=8C=E4=B8=80=E6=A0=87=E7=AD=BE=E6=98=BE?= =?UTF-8?q?=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- static/app.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/app.js b/static/app.js index 6495219..0ac49fc 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}${t.owner ? `${t.owner}` : ""}${t.due_date ? `${t.due_date}` : ""}
`).join("") : `
暂无任务
`}
`; + return `
${phase}${pt.length}
${pt.length ? pt.map((t) => `
${t.task}${(t.owner || t.due_date) ? `${t.owner || ""}${t.owner && t.due_date ? " · " : ""}${t.due_date || ""}` : ""}
`).join("") : `
暂无任务
`}
`; }).join("")}`; document.querySelector("#taskModal").classList.add("active"); if (window.lucide) window.lucide.createIcons();