From 84fd2b8a4900ae486d5d291e1d8da03fe852a9a4 Mon Sep 17 00:00:00 2001 From: Adam Harvey Date: Thu, 11 Feb 2021 22:31:16 -0500 Subject: [PATCH] Fix typo Signed-off-by: Adam Harvey --- .changeset/perfect-coats-train.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.changeset/perfect-coats-train.md b/.changeset/perfect-coats-train.md index a8c62d6264..f76778bcb0 100644 --- a/.changeset/perfect-coats-train.md +++ b/.changeset/perfect-coats-train.md @@ -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 = () => {