diff --git a/index.html b/index.html index 616d20e..bc87e95 100644 --- a/index.html +++ b/index.html @@ -474,12 +474,12 @@
| Deadline | Status | Prioriteetti | Tyyppi | Tehtävä | Vastuuhenkilö | -Deadline | Tunnit | 💬 |
|---|---|---|---|---|---|---|---|---|
| ${t.deadline ? `${t.deadline}` : '—'} | ${todoStatusLabels[t.status]||t.status} | ${todoPriorityLabels[t.priority]||t.priority} | ${t.category ? `${todoCategoryLabels[t.category]||t.category}` : '—'} | ${esc(t.title)} | ${t.assigned_to ? esc(t.assigned_to) : '—'} | -${t.deadline ? `${t.deadline}` : '—'} | ${t.total_hours > 0 ? t.total_hours + 'h' : '—'} | ${t.comment_count > 0 ? t.comment_count : ''} |