Skip to content

Commit aa91bba

Browse files
authored
docs: update frontend plugin docs to use EntityLayout instead of EntityPageLayout (#907)
1 parent efc98e8 commit aa91bba

File tree

7 files changed

+14
-14
lines changed

7 files changed

+14
-14
lines changed

plugins/acr/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ The Azure Container Registry (ACR) plugin displays information about your contai
5555
/* highlight-add-end */
5656
5757
const serviceEntityPage = (
58-
<EntityPageLayout>
58+
<EntityLayout>
5959
// ...
6060
{/* highlight-add-start */}
6161
<EntityLayout.Route
@@ -66,7 +66,7 @@ The Azure Container Registry (ACR) plugin displays information about your contai
6666
<AcrPage />
6767
</EntityLayout.Route>
6868
{/* highlight-add-end */}
69-
</EntityPageLayout>
69+
</EntityLayout>
7070
);
7171
```
7272

plugins/jfrog-artifactory/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ The Jfrog Artifactory plugin displays information about your container images wi
3838
/* highlight-add-end */
3939
4040
const serviceEntityPage = (
41-
<EntityPageLayout>
41+
<EntityLayout>
4242
// ...
4343
{/* highlight-add-start */}
4444
<EntityLayout.Route
@@ -49,7 +49,7 @@ The Jfrog Artifactory plugin displays information about your container images wi
4949
<JfrogArtifactoryPage />
5050
</EntityLayout.Route>
5151
{/* highlight-add-end */}
52-
</EntityPageLayout>
52+
</EntityLayout>
5353
);
5454
```
5555

plugins/kiali/DEVELOPMENT.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,14 +69,14 @@
6969
import { EntityKialiContent } from '@janus-idp/backstage-plugin-kiali';
7070

7171
const serviceEntityPage = (
72-
<EntityPageLayout>
72+
<EntityLayout>
7373
{/* ... */}
7474
{/* highlight-add-start */}
7575
<EntityLayout.Route path="/kiali" title="kiali">
7676
<EntityKialiContent />
7777
</EntityLayout.Route>
7878
{/* highlight-add-end */}
79-
</EntityPageLayout>
79+
</EntityLayout>
8080
);
8181
```
8282

plugins/kiali/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -88,14 +88,14 @@ The Kiali plugin has the following capabilities:
8888
import { EntityKialiContent } from '@janus-idp/backstage-plugin-kiali';
8989
9090
const serviceEntityPage = (
91-
<EntityPageLayout>
91+
<EntityLayout>
9292
{/* ... */}
9393
{/* highlight-add-start */}
9494
<EntityLayout.Route path="/kiali" title="kiali">
9595
<EntityKialiContent />
9696
</EntityLayout.Route>
9797
{/* highlight-add-end */}
98-
</EntityPageLayout>
98+
</EntityLayout>
9999
);
100100
```
101101

plugins/nexus-repository-manager/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ The Nexus Repository Manager plugin displays the information about your build ar
5656
} from '@janus-idp/backstage-plugin-nexus-repository-manager';
5757
5858
const serviceEntityPage = (
59-
<EntityPageLayout>
59+
<EntityLayout>
6060
{/* ... */}
6161
{/* highlight-add-next-line */}
6262
<EntityLayout.Route
@@ -66,7 +66,7 @@ The Nexus Repository Manager plugin displays the information about your build ar
6666
>
6767
<NexusRepositoryManagerPage />
6868
</EntityLayout.Route>
69-
</EntityPageLayout>
69+
</EntityLayout>
7070
);
7171
```
7272

plugins/quay/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,13 @@ The Quay plugin displays the information about your container images within the
4040
import { isQuayAvailable, QuayPage } from '@janus-idp/backstage-plugin-quay';
4141
4242
const serviceEntityPage = (
43-
<EntityPageLayout>
43+
<EntityLayout>
4444
{/* ... */}
4545
{/* highlight-add-next-line */}
4646
<EntityLayout.Route if={isQuayAvailable} path="/quay" title="Quay">
4747
<QuayPage />
4848
</EntityLayout.Route>
49-
</EntityPageLayout>
49+
</EntityLayout>
5050
);
5151
```
5252

plugins/topology/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -292,14 +292,14 @@ The Topology plugin enables you to visualize the workloads such as Deployment, J
292292
import { TopologyPage } from '@janus-idp/backstage-plugin-topology';
293293
294294
const serviceEntityPage = (
295-
<EntityPageLayout>
295+
<EntityLayout>
296296
{/* ... */}
297297
{/* highlight-add-start */}
298298
<EntityLayout.Route path="/topology" title="Topology">
299299
<TopologyPage />
300300
</EntityLayout.Route>
301301
{/* highlight-add-end */}
302-
</EntityPageLayout>
302+
</EntityLayout>
303303
);
304304
```
305305

0 commit comments

Comments
 (0)