From 55556e911bd762fb2a0cac7a40ad0835f563e9eb Mon Sep 17 00:00:00 2001 From: "grafana-delivery-bot[bot]" <132647405+grafana-delivery-bot[bot]@users.noreply.github.com> Date: Mon, 22 Apr 2024 15:54:06 +0200 Subject: [PATCH] [v11.0.x] LDAP: Fix listing all non-matching groups (#86689) LDAP: Fix listing all non-matching groups (#86682) Fix getRowId in LdapUserGroups to list all non-matching groups (cherry picked from commit 6ab9dcde8d8fd3cfd3414beed4e988255fe45307) Co-authored-by: Misi --- public/app/features/admin/ldap/LdapUserGroups.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/features/admin/ldap/LdapUserGroups.tsx b/public/app/features/admin/ldap/LdapUserGroups.tsx index d8a628acf95..ced2acdab68 100644 --- a/public/app/features/admin/ldap/LdapUserGroups.tsx +++ b/public/app/features/admin/ldap/LdapUserGroups.tsx @@ -46,7 +46,7 @@ export const LdapUserGroups = ({ groups }: Props) => { }} columns={columns} data={items} - getRowId={(row) => row.orgId + row.orgRole} + getRowId={(row) => row.orgId + row.orgRole + row.groupDN} /> ); };