From 6b22b78bee78aea224f2dc5ac4c6a2f2149f9dec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Lyngs=C3=B8?= Date: Thu, 3 Aug 2023 11:03:53 +0200 Subject: [PATCH] remove unused method --- .../workspace-editor/workspace-editor.element.ts | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/core/workspace/workspace-editor/workspace-editor.element.ts b/src/Umbraco.Web.UI.Client/src/packages/core/workspace/workspace-editor/workspace-editor.element.ts index 05027eb6ce..4eb78d777e 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/core/workspace/workspace-editor/workspace-editor.element.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/core/workspace/workspace-editor/workspace-editor.element.ts @@ -36,10 +36,10 @@ export class UmbWorkspaceEditorElement extends UmbLitElement { @property() public headline = ''; - @property({type: Boolean}) + @property({ type: Boolean }) public hideNavigation = false; - @property({type: Boolean}) + @property({ type: Boolean }) public enforceNoFooter = false; private _alias = ''; @@ -89,11 +89,6 @@ export class UmbWorkspaceEditorElement extends UmbLitElement { ); } - // TODO: Move into a helper function: - private componentHasManifest(component: HTMLElement): component is HTMLElement & { manifest: unknown } { - return component ? 'manifest' in component : false; - } - private _createRoutes() { this._routes = [];