From 7ae1e4a1fe6134d831fb74caf2bbd28a282d5ab1 Mon Sep 17 00:00:00 2001 From: Sebastian Stehle Date: Wed, 26 Apr 2017 18:23:58 +0200 Subject: [PATCH] Close #26: Show notification when content cannot be saved because of validation errors. --- .../features/content/pages/content/content-page.component.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Squidex/app/features/content/pages/content/content-page.component.ts b/src/Squidex/app/features/content/pages/content/content-page.component.ts index 151b72161..7cd5ca13a 100644 --- a/src/Squidex/app/features/content/pages/content/content-page.component.ts +++ b/src/Squidex/app/features/content/pages/content/content-page.component.ts @@ -137,6 +137,8 @@ export class ContentPageComponent extends AppComponentBase implements OnDestroy, this.enable(); }); } + } else { + this.notifyError('Content element not valid, please check the field with the red bar on the left in all languages (if localizable).'); } }