From f3561a2935387fbdf969eee80a567de14444ebd1 Mon Sep 17 00:00:00 2001 From: Andrew Thauer Date: Tue, 12 Sep 2023 15:28:12 -0400 Subject: [PATCH] feat(catalog): include owner in search result item Signed-off-by: Andrew Thauer --- .changeset/lemon-cups-wait.md | 5 +++++ .../CatalogSearchResultListItem.tsx | 3 +++ 2 files changed, 8 insertions(+) create mode 100644 .changeset/lemon-cups-wait.md diff --git a/.changeset/lemon-cups-wait.md b/.changeset/lemon-cups-wait.md new file mode 100644 index 0000000000..4dd08c21b0 --- /dev/null +++ b/.changeset/lemon-cups-wait.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-catalog': minor +--- + +include owner chip in catalog search result item diff --git a/plugins/catalog/src/components/CatalogSearchResultListItem/CatalogSearchResultListItem.tsx b/plugins/catalog/src/components/CatalogSearchResultListItem/CatalogSearchResultListItem.tsx index 50caf4ff8a..06906aecc1 100644 --- a/plugins/catalog/src/components/CatalogSearchResultListItem/CatalogSearchResultListItem.tsx +++ b/plugins/catalog/src/components/CatalogSearchResultListItem/CatalogSearchResultListItem.tsx @@ -110,6 +110,9 @@ export function CatalogSearchResultListItem( {result.lifecycle && ( )} + {result.owner && ( + + )}