From 37268301bd0bb7da6ec1aeec36a1107ee98e6ff2 Mon Sep 17 00:00:00 2001 From: Adam Harvey Date: Wed, 24 Feb 2021 23:07:21 -0500 Subject: [PATCH] Add description Signed-off-by: Adam Harvey --- .../catalog/src/components/SystemDiagram/SystemDiagram.tsx | 4 ++++ 1 file changed, 4 insertions(+) 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(() => {