remove console.log
This commit is contained in:
@@ -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();
|
||||
});
|
||||
|
||||
@@ -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);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user