diff --git a/plugins/catalog/src/components/SystemDiagram/SystemDiagram.tsx b/plugins/catalog/src/components/SystemDiagram/SystemDiagram.tsx index d2b59fcd11..3d966a2f8b 100644 --- a/plugins/catalog/src/components/SystemDiagram/SystemDiagram.tsx +++ b/plugins/catalog/src/components/SystemDiagram/SystemDiagram.tsx @@ -57,6 +57,10 @@ function simplifiedEntityName( .replace(':default/', ':'); } +/** + * Dynamically generates a diagram of a system, its assigned entities, + * and relationships of those entities. + */ export function SystemDiagram({ entity }: SystemDiagramProps) { const catalogApi = useApi(catalogApiRef); const { loading, error, value: catalogResponse } = useAsync(() => {