Kehitysehdotusten Päivämäärä-sarake ekaksi

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-11 13:31:43 +02:00
parent 46b40cfc83
commit cdc5f366ff
2 changed files with 2 additions and 2 deletions

View File

@@ -604,10 +604,10 @@
<table class="data-table" id="features-table" style="display:none;">
<thead>
<tr>
<th>Päivämäärä</th>
<th>Status</th>
<th>Ehdotus</th>
<th>Ehdottaja</th>
<th>Päivämäärä</th>
<th>&#128172;</th>
</tr>
</thead>

View File

@@ -4130,10 +4130,10 @@ function renderFeaturesList() {
const done = t.status === 'toteutettu' || t.status === 'hylatty';
const rowClass = done ? 'todo-row-done' : '';
return `<tr class="${rowClass}" onclick="openFeatureRead('${t.id}')" style="cursor:pointer;">
<td class="nowrap">${(t.luotu||'').slice(0,10)}</td>
<td><span class="todo-status status-${t.status}">${todoStatusLabels[t.status]||t.status}</span></td>
<td><strong>${esc(t.title)}</strong></td>
<td>${esc(t.created_by)}</td>
<td class="nowrap">${(t.luotu||'').slice(0,10)}</td>
<td style="text-align:center;">${t.comment_count > 0 ? t.comment_count : ''}</td>
</tr>`;
}).join('');