feat(catalog): include owner in search result item

Signed-off-by: Andrew Thauer <athauer@wealthsimple.com>
This commit is contained in:
Andrew Thauer
2023-09-12 15:28:12 -04:00
parent 4213325b7c
commit f3561a2935
2 changed files with 8 additions and 0 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog': minor
---
include owner chip in catalog search result item
@@ -110,6 +110,9 @@ export function CatalogSearchResultListItem(
{result.lifecycle && (
<Chip label={`Lifecycle: ${result.lifecycle}`} size="small" />
)}
{result.owner && (
<Chip label={`Owner: ${result.owner}`} size="small" />
)}
</Box>
</div>
</div>