File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -164,13 +164,13 @@ <h2>Action Queue</h2>
164164 const items = Array . isArray ( rawItems ) ? rawItems : ( rawItems && typeof rawItems === 'object' && rawItems . pr_number ? [ rawItems ] : [ ] ) ;
165165 if ( items . length ) {
166166 const qHtml = `<table>
167- <thead><tr><th>Repo </th><th>PR</th><th>Priority</th><th>Days Open </th><th>Action </th></tr></thead>
167+ <thead><tr><th>Repository </th><th>PR</th><th>Priority</th><th>Hours Since Feedback </th><th>Overdue </th></tr></thead>
168168 <tbody>${ items . map ( q => `<tr>
169- <td>${ q . repo || q . owner_repo || '—' } </td>
169+ <td>${ q . repository || q . repo || '—' } </td>
170170 <td>${ q . pr_number ? `<a href="${ q . pr_url || '#' } " target="_blank">#${ q . pr_number } </a>` : '—' } </td>
171171 <td>${ q . priority || '—' } </td>
172- <td class="num">${ q . days_open || '—' } </td>
173- <td>${ q . action || q . next_action || '— '} </td>
172+ <td class="num">${ q . hours_since_last_external != null ? q . hours_since_last_external . toFixed ( 1 ) + 'h' : '—' } </td>
173+ <td>${ q . overdue_sla ? '<span class="badge gap">Overdue</span>' : '<span class="badge open">OK</span> '} </td>
174174 </tr>` ) . join ( '' ) } </tbody>
175175 </table>` ;
176176 document . getElementById ( 'queue-table' ) . innerHTML = qHtml ;
You can’t perform that action at this time.
0 commit comments