feat(clients): show comment under email in the Client column

The clients table's Client cell already stacks email + subId; add
the admin comment as a third muted line so notes like "VIP" or
"friend of X" are visible in the list view without opening the
info modal. Renders only when set, so rows without a comment look
unchanged.
This commit is contained in:
MHSanaei 2026-05-27 01:33:26 +02:00
parent 7bd54a300c
commit 2346782e44
No known key found for this signature in database
GPG key ID: 7E4060F2FBE5AB7A

View file

@ -524,6 +524,7 @@ export default function ClientsPage() {
<div className="email-cell"> <div className="email-cell">
<span className="email">{record.email}</span> <span className="email">{record.email}</span>
{record.subId && <span className="sub" title={record.subId}>{record.subId}</span>} {record.subId && <span className="sub" title={record.subId}>{record.subId}</span>}
{record.comment && <span className="sub" title={record.comment}>{record.comment}</span>}
</div> </div>
), ),
}, 'email'), }, 'email'),