diff --git a/packages/app/src/components/catalog/EntityPage.tsx b/packages/app/src/components/catalog/EntityPage.tsx index fb56b40e68..1f0749bfbc 100644 --- a/packages/app/src/components/catalog/EntityPage.tsx +++ b/packages/app/src/components/catalog/EntityPage.tsx @@ -38,6 +38,7 @@ import { EntityHasSystemsCard, EntityLinksCard, EntityPageLayout, + SystemDiagram, } from '@backstage/plugin-catalog'; import { EntityProvider, useEntity } from '@backstage/plugin-catalog-react'; import { @@ -441,6 +442,9 @@ const SystemOverviewContent = ({ entity }: { entity: SystemEntity }) => ( + + + @@ -457,6 +461,11 @@ const SystemEntityPage = ({ entity }: { entity: Entity }) => ( title="Overview" element={} /> + } + /> ); @@ -478,6 +487,11 @@ const DomainEntityPage = ({ entity }: { entity: Entity }) => ( title="Overview" element={} /> + } + /> );