Skip to content

Commit 6e837e3

Browse files
authored
Merge pull request #7316 from umbraco/v16/cms/section-sidebar-conditions
V16 CMS: Some properties are outdated on Section Sidebar Apps
2 parents 6297669 + a00deb9 commit 6e837e3

File tree

1 file changed

+8
-4
lines changed

1 file changed

+8
-4
lines changed

16/umbraco-cms/customizing/extending-overview/extension-types/sections/section-sidebar.md

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,12 @@ This page is a work in progress and may undergo further revisions, updates, or a
1717
"type": "sectionSidebarApp",
1818
"alias": "My.SectionSidebarApp",
1919
"name": "My Section Sidebar App",
20-
"meta": {
21-
"sections": ["My.Section"]
22-
}
20+
"conditions": [
21+
{
22+
"alias": "Umb.Condition.SectionAlias",
23+
"match": "My.Section"
24+
}
25+
]
2326
}
2427
```
2528

@@ -34,11 +37,12 @@ interface UmbSectionSidebarAppElement {}
3437
**Sidebar Menu**:
3538

3639
* The Backoffice comes with a menu sidebar app that can be used to create a menu in the sidebar.
37-
* To register a new menu sidebar app, add the following to your manifest
3840
* The menu sidebar app will reference a menu that you have registered in the menu with a menu manifest
3941

4042
<figure><img src="../../../../.gitbook/assets/section-menu-sidebar-app.svg" alt=""><figcaption><p>Menu Sidebar App</p></figcaption></figure>
4143

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

4448
```typescript

0 commit comments

Comments
 (0)