From aa91bba4c7a43de416258eb019724e21c7cf4bb8 Mon Sep 17 00:00:00 2001 From: Frank Kong <50030060+Zaperex@users.noreply.github.com> Date: Mon, 6 Nov 2023 01:10:29 -0500 Subject: [PATCH] docs: update frontend plugin docs to use EntityLayout instead of EntityPageLayout (#907) --- plugins/acr/README.md | 4 ++-- plugins/jfrog-artifactory/README.md | 4 ++-- plugins/kiali/DEVELOPMENT.md | 4 ++-- plugins/kiali/README.md | 4 ++-- plugins/nexus-repository-manager/README.md | 4 ++-- plugins/quay/README.md | 4 ++-- plugins/topology/README.md | 4 ++-- 7 files changed, 14 insertions(+), 14 deletions(-) diff --git a/plugins/acr/README.md b/plugins/acr/README.md index 9713881cc5..8ff0ec66f8 100644 --- a/plugins/acr/README.md +++ b/plugins/acr/README.md @@ -55,7 +55,7 @@ The Azure Container Registry (ACR) plugin displays information about your contai /* highlight-add-end */ const serviceEntityPage = ( - + // ... {/* highlight-add-start */} {/* highlight-add-end */} - + ); ``` diff --git a/plugins/jfrog-artifactory/README.md b/plugins/jfrog-artifactory/README.md index eae288115f..8b2ee6d514 100644 --- a/plugins/jfrog-artifactory/README.md +++ b/plugins/jfrog-artifactory/README.md @@ -38,7 +38,7 @@ The Jfrog Artifactory plugin displays information about your container images wi /* highlight-add-end */ const serviceEntityPage = ( - + // ... {/* highlight-add-start */} {/* highlight-add-end */} - + ); ``` diff --git a/plugins/kiali/DEVELOPMENT.md b/plugins/kiali/DEVELOPMENT.md index de9c6b7640..43d93d594e 100644 --- a/plugins/kiali/DEVELOPMENT.md +++ b/plugins/kiali/DEVELOPMENT.md @@ -69,14 +69,14 @@ import { EntityKialiContent } from '@janus-idp/backstage-plugin-kiali'; const serviceEntityPage = ( - + {/* ... */} {/* highlight-add-start */} {/* highlight-add-end */} - + ); ``` diff --git a/plugins/kiali/README.md b/plugins/kiali/README.md index 0cb621f515..c9c6bb095f 100644 --- a/plugins/kiali/README.md +++ b/plugins/kiali/README.md @@ -88,14 +88,14 @@ The Kiali plugin has the following capabilities: import { EntityKialiContent } from '@janus-idp/backstage-plugin-kiali'; const serviceEntityPage = ( - + {/* ... */} {/* highlight-add-start */} {/* highlight-add-end */} - + ); ``` diff --git a/plugins/nexus-repository-manager/README.md b/plugins/nexus-repository-manager/README.md index ed68b7b510..61201ca43c 100644 --- a/plugins/nexus-repository-manager/README.md +++ b/plugins/nexus-repository-manager/README.md @@ -56,7 +56,7 @@ The Nexus Repository Manager plugin displays the information about your build ar } from '@janus-idp/backstage-plugin-nexus-repository-manager'; const serviceEntityPage = ( - + {/* ... */} {/* highlight-add-next-line */} - + ); ``` diff --git a/plugins/quay/README.md b/plugins/quay/README.md index 51f57638c1..0ce26c8288 100644 --- a/plugins/quay/README.md +++ b/plugins/quay/README.md @@ -40,13 +40,13 @@ The Quay plugin displays the information about your container images within the import { isQuayAvailable, QuayPage } from '@janus-idp/backstage-plugin-quay'; const serviceEntityPage = ( - + {/* ... */} {/* highlight-add-next-line */} - + ); ``` diff --git a/plugins/topology/README.md b/plugins/topology/README.md index 4dc3088ed1..2d4e0c48d0 100644 --- a/plugins/topology/README.md +++ b/plugins/topology/README.md @@ -292,14 +292,14 @@ The Topology plugin enables you to visualize the workloads such as Deployment, J import { TopologyPage } from '@janus-idp/backstage-plugin-topology'; const serviceEntityPage = ( - + {/* ... */} {/* highlight-add-start */} {/* highlight-add-end */} - + ); ```