mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-06-05 12:44:22 +00:00
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:
parent
7bd54a300c
commit
2346782e44
1 changed files with 1 additions and 0 deletions
|
|
@ -524,6 +524,7 @@ export default function ClientsPage() {
|
|||
<div className="email-cell">
|
||||
<span className="email">{record.email}</span>
|
||||
{record.subId && <span className="sub" title={record.subId}>{record.subId}</span>}
|
||||
{record.comment && <span className="sub" title={record.comment}>{record.comment}</span>}
|
||||
</div>
|
||||
),
|
||||
}, 'email'),
|
||||
|
|
|
|||
Loading…
Reference in a new issue