diff --git a/apps/web/src/app/admin-console/organizations/manage/groups.component.ts b/apps/web/src/app/admin-console/organizations/manage/groups.component.ts index 10670e999d..4525d87706 100644 --- a/apps/web/src/app/admin-console/organizations/manage/groups.component.ts +++ b/apps/web/src/app/admin-console/organizations/manage/groups.component.ts @@ -59,6 +59,7 @@ type GroupDetailsRow = { * with members' names (who are assigned to the group) or collection names (which the group has access to). */ const groupsFilter = (filter: string) => { + filter ??= ""; const transformedFilter = filter.trim().toLowerCase(); return (data: GroupDetailsRow) => { const group = data.details;