From 386f780d00492b5ef8b3ab52947b256ef8a5a07e Mon Sep 17 00:00:00 2001 From: mac Date: Tue, 16 Jun 2026 10:26:13 +0800 Subject: [PATCH] =?UTF-8?q?v1.3.8=20=E2=80=94=20=E4=BB=BB=E5=8A=A1?= =?UTF-8?q?=E8=A1=8C=E5=A7=8B=E7=BB=88=E6=B8=B2=E6=9F=93=E8=B4=9F=E8=B4=A3?= =?UTF-8?q?=E4=BA=BA=E5=92=8C=E6=97=A5=E6=9C=9F=20+=20=E5=8A=A0emoji?= =?UTF-8?q?=E5=9B=BE=E6=A0=87=20+=20=E6=8F=90=E4=BA=AE=E9=A2=9C=E8=89=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- static/app.js | 2 +- static/styles.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/static/app.js b/static/app.js index a3e3729..f729e25 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.notes ? `${t.notes}` : ""}
${t.owner ? `${t.owner}` : ""}${t.due_date ? `${t.due_date}` : ""}
`).join("") : `
暂无任务
`}
`; + return `
${phase}${pt.length}
${pt.length ? pt.map((t) => `
${t.task}${t.notes ? `${t.notes}` : ""}
👤 ${t.owner || ""}📅 ${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 f691511..2ad801f 100644 --- a/static/styles.css +++ b/static/styles.css @@ -537,7 +537,7 @@ td { .task-name { color: #c5c6ca; font-size: 13px; display: block; } .task-desc { color: #5a5c63; font-size: 12px; display: block; margin-top: 3px; } .task-right { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; flex-shrink: 0; } -.task-meta { color: #5a5c63; font-size: 11px; white-space: nowrap; } +.task-owner, .task-date { color: #898b94; font-size: 12px; 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;