From 2f55092fc3c22b637ff4331c1a207e2874540430 Mon Sep 17 00:00:00 2001 From: Peter Macdonald Date: Mon, 5 Jan 2026 10:26:15 +0100 Subject: [PATCH] uno reverse the filters Signed-off-by: Peter Macdonald --- packages/app-next/app-config.yaml | 6 +++--- plugins/org/src/alpha.tsx | 7 ++++++- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/packages/app-next/app-config.yaml b/packages/app-next/app-config.yaml index f376c934d3..d297c9caca 100644 --- a/packages/app-next/app-config.yaml +++ b/packages/app-next/app-config.yaml @@ -30,9 +30,9 @@ app: config: showAggregateMembersToggle: true initialRelationAggregation: aggregated - # - entity-card:org/ownership: - # config: - # entityFilterKind: ['Component', 'API', 'Resource', 'System'] + - entity-card:org/ownership: + config: + entityFilterKind: ['Component', 'API', 'System'] # - apis.plugin.graphiql.browse.gitlab: true # - graphiql-endpoint:graphiql/gitlab: true diff --git a/plugins/org/src/alpha.tsx b/plugins/org/src/alpha.tsx index 5532767fea..729ebb063f 100644 --- a/plugins/org/src/alpha.tsx +++ b/plugins/org/src/alpha.tsx @@ -81,7 +81,12 @@ const EntityOwnershipCard = EntityCardBlueprint.makeWithOverrides({ : !config.showAggregateMembersToggle } entityFilterKind={ - config.entityFilterKind ?? ['Component', 'API', 'System'] + config.entityFilterKind ?? [ + 'Component', + 'API', + 'System', + 'Resource', + ] } /> )),