remove console.log

This commit is contained in:
Niels Lyngsø
2022-12-20 13:04:33 +01:00
parent 0f23192994
commit 4ef23bc34c
2 changed files with 0 additions and 5 deletions

View File

@@ -61,7 +61,6 @@ export class UmbWorkspaceDocumentContext extends UmbWorkspaceContext<DocumentDet
// TODO: consider if store alias should be configurable of manifest:
this._storeConsumer = new UmbContextConsumer(this._target, 'umbDocumentStore', (_instance: UmbDocumentStore) => {
console.log("GOT STORE", _instance)
this._store = _instance;
this._observeStore();
});

View File

@@ -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);
}