Files
backstage/.changeset/gentle-buttons-hunt.md
T
2022-02-18 12:41:15 +01:00

648 B

@backstage/create-app
@backstage/create-app
patch

Update the template to reflect the renaming of CatalogResultListItem to CatalogSearchResultListItem from @backstage/plugin-catalog.

To apply this change to an existing app, make the following change to packages/app/src/components/search/SearchPage.tsx:

-import { CatalogResultListItem } from '@backstage/plugin-catalog';
+import { CatalogSearchResultListItem } from '@backstage/plugin-catalog';
   case 'software-catalog':
     return (
-      <CatalogResultListItem
+      <CatalogSearchResultListItem
         key={document.location}
         result={document}
       />