remove console logs

This commit is contained in:
Jesper Møller Jensen
2023-03-14 16:08:04 +13:00
parent af7cb18551
commit 87af34b4ac
3 changed files with 0 additions and 5 deletions

View File

@@ -100,7 +100,6 @@ export class UmbRelationTypeServerDataSource implements RepositoryDetailDataSour
const requestBody: UpdateRelationTypeRequestModel = { ...RelationType };
console.log('AHSGd');
// TODO: use resources when end point is ready:
return tryExecuteAndNotify<RelationTypeResponseModel>(
this.#host,

View File

@@ -50,8 +50,6 @@ export class UmbRelationTypeWorkspaceContext
}
async save() {
console.log('WORKSPACE SAVE');
if (!this.#data.value) return;
if (this.isNew) {
await this.repository.create(this.#data.value);

View File

@@ -34,8 +34,6 @@ export class UmbRelationTypeWorkspaceElement extends UmbLitElement {
private _RelationTypeName = '';
public load(value: string) {
console.log('load');
this.#workspaceContext?.load(value);
//this._unique = entityKey;
}