[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 6ab9dcde8d)

Co-authored-by: Misi <mgyongyosi@users.noreply.github.com>
This commit is contained in:
grafana-delivery-bot[bot]
2024-04-22 15:54:06 +02:00
committed by GitHub
co-authored by Misi
parent 2166ca0a4a
commit 55556e911b
@@ -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}
/>
);
};