From 1afab47f04c847e1f4fdf43e2af2ccf28e765055 Mon Sep 17 00:00:00 2001 From: MHSanaei Date: Thu, 2 Jul 2026 23:58:58 +0200 Subject: [PATCH] feat(frontend): show client group in the client info modal The group label was already on ClientRecord but the info modal never displayed it. Add a conditional row next to the comment, rendered as a geekblue tag to match the group column in the clients table. --- frontend/src/pages/clients/ClientInfoModal.tsx | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/frontend/src/pages/clients/ClientInfoModal.tsx b/frontend/src/pages/clients/ClientInfoModal.tsx index c47fdbd5a..13441d693 100644 --- a/frontend/src/pages/clients/ClientInfoModal.tsx +++ b/frontend/src/pages/clients/ClientInfoModal.tsx @@ -308,6 +308,12 @@ export default function ClientInfoModal({ {t('pages.inbounds.updatedAt')} {dateLabel(client.updatedAt)} + {client.group && ( + + {t('pages.clients.group')} + {client.group} + + )} {client.comment && ( {t('pages.clients.comment')}