From 1a73208c6fb405e390fc36c7c853bec061959937 Mon Sep 17 00:00:00 2001 From: Karl-Philipp Wulfert Date: Tue, 14 May 2019 16:51:00 +0200 Subject: [PATCH] style: correct indentation and format in Thing.ts --- src/core/Thing.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/core/Thing.ts b/src/core/Thing.ts index ffe8346f..207785a9 100644 --- a/src/core/Thing.ts +++ b/src/core/Thing.ts @@ -256,7 +256,7 @@ export class SCThingMeta implements SCMetaTranslations { /** * Translations of values of fields */ - fieldValueTranslations = { + fieldValueTranslations = { de: { type: 'Ding', }, @@ -275,5 +275,6 @@ export class SCThingMeta implements SCMetaTranslations { return this._instance.get(this.name) as T; } - protected constructor() {} + protected constructor() { + } }