diff --git a/.changeset/fuzzy-trains-search.md b/.changeset/fuzzy-trains-search.md new file mode 100644 index 0000000000..229d25f3b5 --- /dev/null +++ b/.changeset/fuzzy-trains-search.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-catalog': patch +--- + +Fix icon alignment in `CatalogSearchResultListItem` diff --git a/plugins/catalog/src/components/CatalogSearchResultListItem/CatalogSearchResultListItem.tsx b/plugins/catalog/src/components/CatalogSearchResultListItem/CatalogSearchResultListItem.tsx index 6d0b3e3038..50caf4ff8a 100644 --- a/plugins/catalog/src/components/CatalogSearchResultListItem/CatalogSearchResultListItem.tsx +++ b/plugins/catalog/src/components/CatalogSearchResultListItem/CatalogSearchResultListItem.tsx @@ -31,7 +31,9 @@ import { HighlightedSearchResultText } from '@backstage/plugin-search-react'; const useStyles = makeStyles( { - item: {}, + item: { + display: 'flex', + }, flexContainer: { flexWrap: 'wrap', },