diff --git a/ui/message-table-renderer.js b/ui/message-table-renderer.js index 5eacaa1..745a856 100644 --- a/ui/message-table-renderer.js +++ b/ui/message-table-renderer.js @@ -27,7 +27,9 @@ function renderTablesToHtml(tables, highlights) { html += ''; table.rows.forEach((row, rowIndex) => { - html += ''; + const rowStatus = table.rowStatuses ? table.rowStatuses[rowIndex] : 'normal'; + const deletionClass = rowStatus === 'pending-deletion' ? ' pending-deletion-row' : ''; + html += ``; row.forEach((cell, colIndex) => { const highlightKey = `${tableIndex}-${rowIndex}-${colIndex}`; const isHighlighted = highlights.has(highlightKey);