From 287de98a2efe57dbc503fe9664ecd281ffd8f397 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Lyngs=C3=B8?= Date: Thu, 24 Aug 2023 11:16:24 +0200 Subject: [PATCH] remove unused prop --- .../workspace/partial-view-workspace-edit.element.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/packages/templating/partial-views/workspace/partial-view-workspace-edit.element.ts b/src/Umbraco.Web.UI.Client/src/packages/templating/partial-views/workspace/partial-view-workspace-edit.element.ts index 9f22cb074d..c5bc85cde3 100644 --- a/src/Umbraco.Web.UI.Client/src/packages/templating/partial-views/workspace/partial-view-workspace-edit.element.ts +++ b/src/Umbraco.Web.UI.Client/src/packages/templating/partial-views/workspace/partial-view-workspace-edit.element.ts @@ -60,10 +60,6 @@ export class UmbPartialViewWorkspaceEditElement extends UmbLitElement { this._path = path; }); - this.observe(this.#partialViewWorkspaceContext.isNew, (isNew) => { - this.#isNew = !!isNew; - }); - this.observe(this.#partialViewWorkspaceContext.isCodeEditorReady, (isReady) => { this._ready = isReady; });