highlight current approval admin row

This commit is contained in:
QuickMythril 2025-01-30 00:24:03 -05:00
parent 71bb35c6e5
commit 1c157b0ccb

View File

@ -1742,8 +1742,18 @@ const buildApprovalTableHtml = async (approvalTxs, getNameFunc) => {
: "(No registered name)"
const dateStr = new Date(tx.timestamp).toLocaleString()
// Check whether this is the current user
const isCurrentUser =
userState &&
userState.accountName &&
adminName &&
adminName.toLowerCase() === userState.accountName.toLowerCase();
// If it's the current user, highlight the row (change to any color/style you prefer)
const rowStyle = isCurrentUser
? "background: rgba(178, 255, 89, 0.2);" // light green highlight
: "";
return `
<tr>
<tr style="${rowStyle}">
<td style="border: 1px solid rgb(255, 255, 255); padding: 4px; color: dodgerblue">${displayName}</td>
<td style="border: 1px solid rgb(255, 254, 254); padding: 4px;">${dateStr}</td>
</tr>