From 6ab9dcde8d8fd3cfd3414beed4e988255fe45307 Mon Sep 17 00:00:00 2001 From: Misi Date: Mon, 22 Apr 2024 15:34:16 +0200 Subject: [PATCH] LDAP: Fix listing all non-matching groups (#86682) Fix getRowId in LdapUserGroups to list all non-matching groups --- 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} /> ); };