Kehitysehdotusten Päivämäärä-sarake ekaksi
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
@@ -604,10 +604,10 @@
|
|||||||
<table class="data-table" id="features-table" style="display:none;">
|
<table class="data-table" id="features-table" style="display:none;">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
|
<th>Päivämäärä</th>
|
||||||
<th>Status</th>
|
<th>Status</th>
|
||||||
<th>Ehdotus</th>
|
<th>Ehdotus</th>
|
||||||
<th>Ehdottaja</th>
|
<th>Ehdottaja</th>
|
||||||
<th>Päivämäärä</th>
|
|
||||||
<th>💬</th>
|
<th>💬</th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
|
|||||||
@@ -4130,10 +4130,10 @@ function renderFeaturesList() {
|
|||||||
const done = t.status === 'toteutettu' || t.status === 'hylatty';
|
const done = t.status === 'toteutettu' || t.status === 'hylatty';
|
||||||
const rowClass = done ? 'todo-row-done' : '';
|
const rowClass = done ? 'todo-row-done' : '';
|
||||||
return `<tr class="${rowClass}" onclick="openFeatureRead('${t.id}')" style="cursor:pointer;">
|
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><span class="todo-status status-${t.status}">${todoStatusLabels[t.status]||t.status}</span></td>
|
||||||
<td><strong>${esc(t.title)}</strong></td>
|
<td><strong>${esc(t.title)}</strong></td>
|
||||||
<td>${esc(t.created_by)}</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>
|
<td style="text-align:center;">${t.comment_count > 0 ? t.comment_count : ''}</td>
|
||||||
</tr>`;
|
</tr>`;
|
||||||
}).join('');
|
}).join('');
|
||||||
|
|||||||
Reference in New Issue
Block a user