feat(dashboard): add filtering groups based on whether they have members

and vice versa
This commit is contained in:
Jake Fulmine 2023-06-03 13:33:10 +02:00
parent 28834ba9ad
commit f112f45e77
5 changed files with 52 additions and 8 deletions

View file

@ -52,7 +52,7 @@
listLoading = false;
}
$: processedGroups = filterList(groups, options, "group")
$: processedGroups = filterList(groups, groups, options, "group")
$: currentGroups = paginateList(processedGroups, pageOptions)
$: shortMembers = createShortList(members)
$: pageAmount = getPageAmount(processedGroups, pageOptions)