Jelajahi Sumber

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.
MHSanaei 20 jam lalu
induk
melakukan
2346782e44
1 mengubah file dengan 1 tambahan dan 0 penghapusan
  1. 1 0
      frontend/src/pages/clients/ClientsPage.tsx

+ 1 - 0
frontend/src/pages/clients/ClientsPage.tsx

@@ -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'),