diff --git a/frontend/app/features/content/pages/content/content-page.component.ts b/frontend/app/features/content/pages/content/content-page.component.ts index 66326867a..6757f50b8 100644 --- a/frontend/app/features/content/pages/content/content-page.component.ts +++ b/frontend/app/features/content/pages/content/content-page.component.ts @@ -182,8 +182,10 @@ export class ContentPageComponent extends ResourceOwner implements CanComponentD this.contentsState.create(value, publish) .subscribe({ - next: () => { + next: content => { this.contentForm.submitCompleted({ noReset: true }); + + this.router.navigate([content.id, 'history'], { relativeTo: this.route.parent! }); }, error: error => { this.contentForm.submitFailed(error);