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

Fix getRowId in LdapUserGroups to list all non-matching groups
pull/86691/head
Misi 1 year ago committed by GitHub
parent 7564d5cee7
commit 6ab9dcde8d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
  1. 2
      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}
/>
);
};

Loading…
Cancel
Save