LDAP: Fix listing all non-matching groups (#86682)

Fix getRowId in LdapUserGroups to list all non-matching groups
This commit is contained in:
Misi
2024-04-22 15:34:16 +02:00
committed by GitHub
parent 7564d5cee7
commit 6ab9dcde8d
@@ -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}
/>
);
};