Merge pull request #19910 from andrewthauer/catalog-search-owner

feat(catalog): include owner in search result item
This commit is contained in:
Fredrik Adelöw
2023-09-26 14:32:34 +02:00
committed by GitHub
2 changed files with 8 additions and 0 deletions
@@ -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>