From a00deb976aa3412cbcf35b8791da7923538f5c86 Mon Sep 17 00:00:00 2001 From: Jacob Overgaard <752371+iOvergaard@users.noreply.github.com> Date: Tue, 19 Aug 2025 08:49:50 +0200 Subject: [PATCH] Update section-sidebar.md Replaces outdated properties with "conditions" --- .../extension-types/sections/section-sidebar.md | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) 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