From 89ee440e872ccd432aa5aaabf5f1fc2222e84231 Mon Sep 17 00:00:00 2001 From: Sebastian Stehle Date: Tue, 23 Jul 2019 19:57:07 +0200 Subject: [PATCH] Fix tslint --- src/Squidex/app/shared/state/contents.forms.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Squidex/app/shared/state/contents.forms.ts b/src/Squidex/app/shared/state/contents.forms.ts index 3f923e760..306699712 100644 --- a/src/Squidex/app/shared/state/contents.forms.ts +++ b/src/Squidex/app/shared/state/contents.forms.ts @@ -78,7 +78,7 @@ export function getContentValue(content: ContentDto, language: LanguageDto, fiel fieldValue[language.iso2Code] : undefined; - value = value || '- No Value -' + value = value || '- No Value -'; return { value, formatted: value }; }