From 2346782e446818e501332ee5b2ee68da03376d86 Mon Sep 17 00:00:00 2001 From: MHSanaei Date: Wed, 27 May 2026 01:33:26 +0200 Subject: [PATCH] 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. --- frontend/src/pages/clients/ClientsPage.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/pages/clients/ClientsPage.tsx b/frontend/src/pages/clients/ClientsPage.tsx index 04da6509..1f574c52 100644 --- a/frontend/src/pages/clients/ClientsPage.tsx +++ b/frontend/src/pages/clients/ClientsPage.tsx @@ -524,6 +524,7 @@ export default function ClientsPage() {
{record.email} {record.subId && {record.subId}} + {record.comment && {record.comment}}
), }, 'email'),