From 3d13a0459c8672d9fcbe2624fa556e2b22179fd2 Mon Sep 17 00:00:00 2001 From: Wx-2025 <351320169@qq.com> Date: Thu, 23 Oct 2025 22:05:42 +0800 Subject: [PATCH] Update message-table-renderer.js --- ui/message-table-renderer.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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);