style: correct indentation and format in Thing.ts

This commit is contained in:
Karl-Philipp Wulfert
2019-05-14 16:51:00 +02:00
parent 1d6a2b7841
commit 1a73208c6f

View File

@@ -256,7 +256,7 @@ export class SCThingMeta implements SCMetaTranslations<SCThing> {
/** /**
* Translations of values of fields * Translations of values of fields
*/ */
fieldValueTranslations = { fieldValueTranslations = {
de: { de: {
type: 'Ding', type: 'Ding',
}, },
@@ -275,5 +275,6 @@ export class SCThingMeta implements SCMetaTranslations<SCThing> {
return this._instance.get(this.name) as T; return this._instance.get(this.name) as T;
} }
protected constructor() {} protected constructor() {
}
} }