diff --git a/16/umbraco-cms/customizing/extending-overview/extension-types/sections/section-sidebar.md b/16/umbraco-cms/customizing/extending-overview/extension-types/sections/section-sidebar.md index 3b008c02fe2..ed0b739f634 100644 --- a/16/umbraco-cms/customizing/extending-overview/extension-types/sections/section-sidebar.md +++ b/16/umbraco-cms/customizing/extending-overview/extension-types/sections/section-sidebar.md @@ -17,9 +17,12 @@ This page is a work in progress and may undergo further revisions, updates, or a "type": "sectionSidebarApp", "alias": "My.SectionSidebarApp", "name": "My Section Sidebar App", - "meta": { - "sections": ["My.Section"] - } + "conditions": [ + { + "alias": "Umb.Condition.SectionAlias", + "match": "My.Section" + } + ] } ``` @@ -34,11 +37,12 @@ interface UmbSectionSidebarAppElement {} **Sidebar Menu**: * The Backoffice comes with a menu sidebar app that can be used to create a menu in the sidebar. -* To register a new menu sidebar app, add the following to your manifest * The menu sidebar app will reference a menu that you have registered in the menu with a menu manifest

Menu Sidebar App

+To register a new menu sidebar app, add the following to your manifest (notice the added `"kind"` and `"meta"` properties): + **Manifest** ```typescript