From 9ae64f138b15e1b18977fd10c12bbf7f56aec314 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Mon, 23 Apr 2018 11:45:10 +0200 Subject: [PATCH] Fix: Show dialog on conrent creation failure. --- src/Squidex/app/shared/state/contents.state.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/Squidex/app/shared/state/contents.state.ts b/src/Squidex/app/shared/state/contents.state.ts index 49cc5b43e..8b4d70759 100644 --- a/src/Squidex/app/shared/state/contents.state.ts +++ b/src/Squidex/app/shared/state/contents.state.ts @@ -250,7 +250,8 @@ export abstract class ContentsStateBase extends State { return { ...s, contents, contentsPager }; }); - }); + }) + .notify(this.dialogs); } public changeStatus(contents: ContentDto[], action: string, dueTime: string | null): Observable {