We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 05bfc14 + 14db5ba commit fea0a4fCopy full SHA for fea0a4f
src/packages/core/section/section-sidebar/section-sidebar.element.ts
@@ -1,9 +1,15 @@
1
import { UmbTextStyles } from '@umbraco-cms/backoffice/style';
2
import { css, html, customElement } from '@umbraco-cms/backoffice/external/lit';
3
import { UmbLitElement } from '@umbraco-cms/backoffice/lit-element';
4
+import { UmbSectionSidebarContext } from './section-sidebar.context.js';
5
6
@customElement('umb-section-sidebar')
7
export class UmbSectionSidebarElement extends UmbLitElement {
8
+ constructor() {
9
+ super();
10
+ new UmbSectionSidebarContext(this);
11
+ }
12
+
13
override render() {
14
return html`
15
<umb-section-sidebar-context-menu>
0 commit comments