LDAP: Fix listing all non-matching groups (#86682)
Fix getRowId in LdapUserGroups to list all non-matching groups
This commit is contained in:
@@ -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}
|
||||
/>
|
||||
);
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user