Address review feedback on plugin README updates

- Apply freben's suggested wording for old frontend system sections to
  clarify they can be skipped on the new frontend system
- Fix scaffolder README: add missing imports (AnyApiFactory,
  scmIntegrationsApiRef), closing bracket, and update link text
- Fix devtools README: correct closing tag from `</ FlatRoutes>` to
  `</FlatRoutes>`
- Fix kubernetes README: reword "must be explicitly added" to avoid
  conflicting with feature discovery paragraph

Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
Made-with: Cursor
This commit is contained in:
Patrik Oldsberg
2026-03-16 13:20:01 +01:00
parent 538c985672
commit 98b6b9701b
8 changed files with 14 additions and 11 deletions
+2 -2
View File
@@ -202,7 +202,7 @@ Here's how to add the Catalog Unprocessed Entities tab:
## Old Frontend System
If your Backstage app uses the old frontend system, you need to manually wire the plugin into your app.
If your Backstage app uses the old frontend system, you need to manually wire the plugin into your app as outlined in this section. If you are on the new frontend system, you can skip this.
1. Open the `packages/app/src/App.tsx` file
2. Then after all the import statements add the following line:
@@ -211,7 +211,7 @@ If your Backstage app uses the old frontend system, you need to manually wire th
import { DevToolsPage } from '@backstage/plugin-devtools';
```
3. In this same file just before the closing `</ FlatRoutes>`, this will be near the bottom of the file, add this line:
3. In this same file just before the closing `</FlatRoutes>`, this will be near the bottom of the file, add this line:
```ts
<Route path="/devtools" element={<DevToolsPage />} />