Skip to content

Commit

Permalink
fix linter errors
Browse files Browse the repository at this point in the history
Signed-off-by: Matthias Weirich <matthias.weirich@selectcode.de>
  • Loading branch information
vavido committed Jan 18, 2021
1 parent 7a8473a commit df0c0af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion javascript/lib/api/src/model/things.model.ts
Expand Up @@ -60,7 +60,7 @@ export class Thing extends EntityWithId {

public toObject(): object {
const featuresObj = Features.toObject(this.features);
const metadataObj = this._metadata ? this._metadata.toObject() :undefined;
const metadataObj = this._metadata ? this._metadata.toObject() : undefined;
const aclObj = Acl.toObject(this._acl);
return EntityModel.buildObject(new Map<string, any>([
['thingId', this.thingId],
Expand Down

0 comments on commit df0c0af

Please sign in to comment.