From fc6372356002deb6d27e1e38f63a7d81b9ae20a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nguy=E1=BB=85n=20Nh=E1=BA=ADt=20Th=C3=A0nh?= Date: Fri, 2 Jan 2026 03:20:19 +0700 Subject: [PATCH] fix(frontend-system-doc): use PascalCase for SidebarContent in migration guide (#32228) * fix(frontend-system-doc): update import statement for sidebar content in migration guide Signed-off-by: Thanh Nguyen * fix(frontend-system-doc): update capitalization for SidebarContent naming in migration guide Signed-off-by: Thanh Nguyen --------- Signed-off-by: Thanh Nguyen Co-authored-by: Thanh Nguyen --- docs/frontend-system/building-apps/08-migrating.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/frontend-system/building-apps/08-migrating.md b/docs/frontend-system/building-apps/08-migrating.md index 1fd74becfc..88dff704c4 100644 --- a/docs/frontend-system/building-apps/08-migrating.md +++ b/docs/frontend-system/building-apps/08-migrating.md @@ -698,16 +698,16 @@ import { SidebarContent } from './Sidebar'; export const navModule = createFrontendModule({ pluginId: 'app', - extensions: [sidebarContent], + extensions: [SidebarContent], }); ``` -Then in the actual implementation for the `sidebarContent` extension, you can provide something like the following, where you implement the entire `Sidebar` component. +Then in the actual implementation for the `SidebarContent` extension, you can provide something like the following, where you implement the entire `Sidebar` component. ```tsx title="in packages/app/src/modules/nav/Sidebar.tsx" import { NavContentBlueprint } from '@backstage/frontend-plugin-api'; -export const sidebarContent = NavContentBlueprint.make({ +export const SidebarContent = NavContentBlueprint.make({ params: { component: ({ items }) => (