You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The data in User groups and Netgroups tabs is currently being retrieved as following:
constnetgroupsNotMemberOfQuery=useGettingNetgroupsQuery({no_user: uid,apiVersion: API_VERSION_BACKUP,startIdx: firstUserIdx,stopIdx: 100,// Limited to max. 100 netgroups to show in the dual selector});
The reason behind this is that the retrieved data is meant to be displayed in two lists depending on the membership direction: direct or indirect. Prior to this, the limitation was done based on pagination size, but the number of retrieved elements were both direct and indirect, resulting in shorter lists and inaccurate results.
Retrieving data based on page size has the advantage of limiting the search based on the current context. E.g., it is more efficient to retrieve just 20 elements to display in a table rather than 200 entries and just take only 20 of them.
That is why a new solution to perform searches based on the page size while keeping the coherence direct | indirect is needed.
The text was updated successfully, but these errors were encountered:
The data in
User groups
andNetgroups
tabs is currently being retrieved as following:The reason behind this is that the retrieved data is meant to be displayed in two lists depending on the membership direction:
direct
orindirect
. Prior to this, the limitation was done based on pagination size, but the number of retrieved elements were both direct and indirect, resulting in shorter lists and inaccurate results.Retrieving data based on page size has the advantage of limiting the search based on the current context. E.g., it is more efficient to retrieve just 20 elements to display in a table rather than 200 entries and just take only 20 of them.
That is why a new solution to perform searches based on the page size while keeping the coherence
direct
|indirect
is needed.The text was updated successfully, but these errors were encountered: