From 4ef23bc34ca4e901c43317dfeb9770378a2b5a11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Niels=20Lyngs=C3=B8?= Date: Tue, 20 Dec 2022 13:04:33 +0100 Subject: [PATCH] remove console.log --- .../workspaces/document/workspace-document.context.ts | 1 - .../workspaces/document/workspace-document.element.ts | 4 ---- 2 files changed, 5 deletions(-) diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/workspaces/document/workspace-document.context.ts b/src/Umbraco.Web.UI.Client/src/backoffice/workspaces/document/workspace-document.context.ts index 1e776a905d..1155da139b 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/workspaces/document/workspace-document.context.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/workspaces/document/workspace-document.context.ts @@ -61,7 +61,6 @@ export class UmbWorkspaceDocumentContext extends UmbWorkspaceContext { - console.log("GOT STORE", _instance) this._store = _instance; this._observeStore(); }); diff --git a/src/Umbraco.Web.UI.Client/src/backoffice/workspaces/document/workspace-document.element.ts b/src/Umbraco.Web.UI.Client/src/backoffice/workspaces/document/workspace-document.element.ts index e4a8fabe07..8bdbe0de43 100644 --- a/src/Umbraco.Web.UI.Client/src/backoffice/workspaces/document/workspace-document.element.ts +++ b/src/Umbraco.Web.UI.Client/src/backoffice/workspaces/document/workspace-document.element.ts @@ -51,8 +51,6 @@ export class UmbWorkspaceDocumentElement extends UmbObserverMixin(UmbContextCons constructor() { super(); - console.log("WORKSPACE DOCUMENT") - // TODO: consider if registering extensions should happen initially or else where, to enable unregister of extensions. this._registerWorkspaceViews(); } @@ -70,8 +68,6 @@ export class UmbWorkspaceDocumentElement extends UmbObserverMixin(UmbContextCons protected _provideWorkspace() { if(this._entityType && this._entityKey) { - - console.log("_provideWorkspace ", this._entityType, this._entityKey) this._workspaceContext = new UmbWorkspaceDocumentContext(this, this._entityType, this._entityKey); this.provideContext('umbWorkspaceContext', this._workspaceContext); }