From 0b67a695806f15e8ecc651fe4e227f9a57a6ca9b Mon Sep 17 00:00:00 2001 From: LB Date: Wed, 29 Jul 2020 11:38:48 -0400 Subject: [PATCH] Add pluagin source for page (#26104) Co-authored-by: Laurie Barth --- packages/gatsby-admin/src/pages/index.tsx | 18 +++++++++++++++++- 1 file changed, 17 insertions(+), 1 deletion(-) diff --git a/packages/gatsby-admin/src/pages/index.tsx b/packages/gatsby-admin/src/pages/index.tsx index c6f5576bc7187..4303a91ea3a97 100644 --- a/packages/gatsby-admin/src/pages/index.tsx +++ b/packages/gatsby-admin/src/pages/index.tsx @@ -91,6 +91,9 @@ const Index: React.FC<{}> = () => { allGatsbyPage { nodes { path + pluginCreator { + name + } } } allGatsbyPlugin { @@ -127,7 +130,20 @@ const Index: React.FC<{}> = () => { .sort((a, b) => a.path.localeCompare(b.path)) .map(page => (
  • - {page.path} + + {page.path} + + Source: {page.pluginCreator.name} + +
  • ))}