Signed-off-by: Adam Harvey <adam.harvey@dxc.com>
This commit is contained in:
Adam Harvey
2021-02-11 22:31:16 -05:00
parent aa58c01e2c
commit 84fd2b8a49
+2 -2
View File
@@ -2,7 +2,7 @@
'@backstage/plugin-catalog': patch
---
Adds a new `SystemDiagram` component to mvisually map all elements in a system.
Adds a new `SystemDiagram` component to visually map all elements in a system.
To use this new component, a new system entity page would need to be added to the `packages/app/src/components/catalog/EntityPage.tsx` file.
@@ -36,7 +36,7 @@ const SystemEntityPage = ({ entity }: { entity: Entity }) => (
);
```
And the addition of a new switch case to the `EntityPage`:
And the addition of a new switch case to the `EntityPage` object:
```diff
-export const EntityPage = () => {