From e4558164e866b91f0823ce44fd92f61837744837 Mon Sep 17 00:00:00 2001 From: Mads Rasmussen Date: Fri, 7 Oct 2022 15:53:53 +0200 Subject: [PATCH] remove unused --- .../src/backoffice/sections/shared/section.element.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/sections/shared/section.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/sections/shared/section.element.ts index c9063c7900..47944f46f2 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/sections/shared/section.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/sections/shared/section.element.ts @@ -52,9 +52,6 @@ export class UmbSectionElement extends UmbContextConsumerMixin(LitElement) { @state() private _views: Array = []; - private _editors?: Array; - private _editorsSubscription?: Subscription; - private _entityStore?: UmbEntityStore; private _sectionContext?: UmbSectionContext; @@ -192,7 +189,6 @@ export class UmbSectionElement extends UmbContextConsumerMixin(LitElement) { disconnectedCallback(): void { super.disconnectedCallback(); this._treesSubscription?.unsubscribe(); - this._editorsSubscription?.unsubscribe(); this._viewsSubscription?.unsubscribe(); }