From b38ed2d4028e00fa84f4d81b9840a9bef44c1c56 Mon Sep 17 00:00:00 2001 From: Evan Fenner <105249079+efenner-cambia@users.noreply.github.com> Date: Fri, 28 Apr 2023 17:11:49 -0700 Subject: [PATCH 1/4] Update README.md Example code in the customization section was not valid. Updated to fix Signed-off-by: Evan Fenner <105249079+efenner-cambia@users.noreply.github.com> --- plugins/explore/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/explore/README.md b/plugins/explore/README.md index a1cb273aab..42b44f7d86 100644 --- a/plugins/explore/README.md +++ b/plugins/explore/README.md @@ -104,11 +104,11 @@ Create a custom explore page in ```tsx import { - DomainExplorerContent, + CatalogKindExplorerContent, ExploreLayout, } from '@backstage/plugin-explore'; import React from 'react'; -import { InnserSourceExplorerContent } from './InnserSourceExplorerContent'; +import { AcmeInnserSourceExploreContent } from './InnserSourceExplorerContent'; export const ExplorePage = () => { return ( @@ -123,7 +123,7 @@ export const ExplorePage = () => { - + ); From b8bed64be88e482d1d51be3d25a040063308156d Mon Sep 17 00:00:00 2001 From: Evan Fenner <105249079+efenner-cambia@users.noreply.github.com> Date: Thu, 4 May 2023 16:59:47 -0700 Subject: [PATCH 2/4] Address comments in README.md Signed-off-by: Evan Fenner <105249079+efenner-cambia@users.noreply.github.com> --- plugins/explore/README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/plugins/explore/README.md b/plugins/explore/README.md index 42b44f7d86..24e6496cc3 100644 --- a/plugins/explore/README.md +++ b/plugins/explore/README.md @@ -104,11 +104,11 @@ Create a custom explore page in ```tsx import { - CatalogKindExplorerContent, + CatalogKindExploreContent, ExploreLayout, } from '@backstage/plugin-explore'; import React from 'react'; -import { AcmeInnserSourceExploreContent } from './InnserSourceExplorerContent'; +import { InnerSourceExploreContent } from './InnerSourceExploreContent'; export const ExplorePage = () => { return ( @@ -123,7 +123,7 @@ export const ExplorePage = () => { - + ); From a6025e25d994d6d7a676ecdd6e510b611a055bbf Mon Sep 17 00:00:00 2001 From: Evan Fenner <105249079+efenner-cambia@users.noreply.github.com> Date: Thu, 4 May 2023 17:35:12 -0700 Subject: [PATCH 3/4] Add changeset Signed-off-by: Evan Fenner <105249079+efenner-cambia@users.noreply.github.com> --- .changeset/two-gorillas-drop.md | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 .changeset/two-gorillas-drop.md diff --git a/.changeset/two-gorillas-drop.md b/.changeset/two-gorillas-drop.md new file mode 100644 index 0000000000..792fd246a2 --- /dev/null +++ b/.changeset/two-gorillas-drop.md @@ -0,0 +1,5 @@ +--- +'@backstage/plugin-explore': patch +--- + +Updated the example code in the "Customization" section of the Readme to make the imports match the components used. From fd0b873ad7fc467f17e19d72519edd876c27b0b9 Mon Sep 17 00:00:00 2001 From: Evan Fenner <105249079+efenner-cambia@users.noreply.github.com> Date: Thu, 4 May 2023 17:37:24 -0700 Subject: [PATCH 4/4] change capitalization of README Signed-off-by: Evan Fenner <105249079+efenner-cambia@users.noreply.github.com> --- .changeset/two-gorillas-drop.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.changeset/two-gorillas-drop.md b/.changeset/two-gorillas-drop.md index 792fd246a2..72de66dbff 100644 --- a/.changeset/two-gorillas-drop.md +++ b/.changeset/two-gorillas-drop.md @@ -2,4 +2,4 @@ '@backstage/plugin-explore': patch --- -Updated the example code in the "Customization" section of the Readme to make the imports match the components used. +Updated the example code in the "Customization" section of the README to make the imports match the components used.