diff --git a/pkg/interface/src/views/landscape/components/GroupsPane.tsx b/pkg/interface/src/views/landscape/components/GroupsPane.tsx index e37e746843..e87808ecbc 100644 --- a/pkg/interface/src/views/landscape/components/GroupsPane.tsx +++ b/pkg/interface/src/views/landscape/components/GroupsPane.tsx @@ -192,12 +192,15 @@ export function GroupsPane(props: GroupsPaneProps) { path={relativePath("")} render={(routeProps) => { const hasDescription = groupAssociation?.metadata?.description; + const channelCount = Object.keys(props?.associations?.graph ?? {}).filter(e => { + return props?.associations?.graph?.[e]?.['group'] === groupPath; + }).length; let summary: ReactNode; if(groupAssociation?.group) { const memberCount = props.groups[groupAssociation.group].members.size; summary = } else {