From 755d22cf48f1082f0b51829f719b9aaa656f2016 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B5=D0=B9=20=D0=A1=D0=B0?= =?UTF-8?q?=D0=B1=D0=B8=D0=BB=D0=B8=D0=BD?= Date: Mon, 13 Jul 2026 17:35:52 +0300 Subject: [PATCH] =?UTF-8?q?fix(users):=20=D0=BE=D1=82=D0=BE=D0=B1=D1=80?= =?UTF-8?q?=D0=B0=D0=B6=D0=B5=D0=BD=D0=B8=D0=B5=20users=5Fby=5Frole=20?= =?UTF-8?q?=D0=B2=20=D1=81=D1=82=D0=B0=D1=82=D0=B8=D1=81=D1=82=D0=B8=D0=BA?= =?UTF-8?q?=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Refs EventHub/EventHubFrontAdmin#29 Co-authored-by: Cursor --- src/pages/users/UserListPage.tsx | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/pages/users/UserListPage.tsx b/src/pages/users/UserListPage.tsx index 2650d9c..d051f35 100644 --- a/src/pages/users/UserListPage.tsx +++ b/src/pages/users/UserListPage.tsx @@ -267,6 +267,13 @@ const UserListPage: React.FC = () => { ))} + {Object.entries(stats.users_by_role || {}).map(([role, count]) => ( + + + + + + ))} )}