diff --git a/microsite/sidebars.ts b/microsite/sidebars.ts index f70de52324..879c849ac7 100644 --- a/microsite/sidebars.ts +++ b/microsite/sidebars.ts @@ -438,7 +438,11 @@ export default { ), sidebarElementWithIndex( { label: 'Publishing', description: 'Publishing your plugins.' }, - ['plugins/publish-private', 'plugins/add-to-directory', 'plugins/plugin-directory-audit'], + [ + 'plugins/publish-private', + 'plugins/add-to-directory', + 'plugins/plugin-directory-audit', + ], ), 'plugins/observability', ], diff --git a/microsite/src/pages/plugins/index.tsx b/microsite/src/pages/plugins/index.tsx index e108443d46..9acf3fb341 100644 --- a/microsite/src/pages/plugins/index.tsx +++ b/microsite/src/pages/plugins/index.tsx @@ -124,7 +124,10 @@ const Plugins = () => { const otherPlugins = useMemo(() => { return plugins.otherPlugins - .filter(pluginData => pluginData.status !== 'inactive' && pluginData.status !== 'archived') + .filter( + pluginData => + pluginData.status !== 'inactive' && pluginData.status !== 'archived', + ) .filter(pluginData => matchesCategory(pluginData, selectedCategories)) .filter(pluginData => matchesSearch(pluginData, searchTerm)); }, [selectedCategories, searchTerm]); @@ -171,15 +174,17 @@ const Plugins = () => { /> - {corePlugins.length === 0 && otherPlugins.length === 0 && inactivePlugins.length === 0 && ( -
- We couldn't find any plugins matching your criteria. Please try - adjusting your search or filter settings. -
-+ We couldn't find any plugins matching your criteria. Please try + adjusting your search or filter settings. +
+- We couldn't find any active plugins matching your criteria. -
-We couldn't find any active plugins matching your criteria.
+- These plugins are no longer actively maintained as their NPM package has not seen an update in more than 365 days. They are kept here for reference but may not work with - current versions of Backstage. Details on the audit process can be found in the Plugin Directory Audit documentation. + These plugins are no longer actively maintained as their NPM + package has not seen an update in more than 365 days. They are + kept here for reference but may not work with current versions of + Backstage. Details on the audit process can be found in the{' '} + + Plugin Directory Audit + {' '} + documentation.