@@ -2,5 +2,4 @@
|
||||
'@backstage/plugin-org': patch
|
||||
---
|
||||
|
||||
Add entity type to the Ownership Cards.
|
||||
Fix the query params for the links of the Ownership Cards so that the catalog page actually selects the right entity kind.
|
||||
Add entity kind to the Ownership Cards. Fix the query params for the links of the Ownership Cards so that the catalog page actually selects the right entity kind.
|
||||
|
||||
@@ -82,7 +82,7 @@ const EntityCountTile = ({
|
||||
<Typography className={classes.bold} variant="h6">
|
||||
{pluralize(name, counter)}
|
||||
</Typography>
|
||||
{kind != type && <Typography variant="subtitle1">{kind}</Typography>}
|
||||
{kind !== type && <Typography variant="subtitle1">{kind}</Typography>}
|
||||
</Box>
|
||||
</Link>
|
||||
);
|
||||
|
||||
@@ -49,7 +49,7 @@ const getQueryParams = (
|
||||
humanizeEntityRef(parseEntityRef(owner), { defaultKind: 'group' }),
|
||||
);
|
||||
const filters = {
|
||||
kind: kind.toLowerCase(),
|
||||
kind: kind.toLocaleLowerCase('en-US'),
|
||||
type,
|
||||
owners,
|
||||
user: 'all',
|
||||
|
||||
Reference in New Issue
Block a user