uno reverse the filters

Signed-off-by: Peter Macdonald <peterm4c@pm.me>
This commit is contained in:
Peter Macdonald
2026-01-05 10:26:15 +01:00
parent d4abd7f0f2
commit 2f55092fc3
2 changed files with 9 additions and 4 deletions
+3 -3
View File
@@ -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
+6 -1
View File
@@ -81,7 +81,12 @@ const EntityOwnershipCard = EntityCardBlueprint.makeWithOverrides({
: !config.showAggregateMembersToggle
}
entityFilterKind={
config.entityFilterKind ?? ['Component', 'API', 'System']
config.entityFilterKind ?? [
'Component',
'API',
'System',
'Resource',
]
}
/>
)),