diff --git a/framework/core/js/src/forum/components/DiscussionPage.js b/framework/core/js/src/forum/components/DiscussionPage.js index edfda8523..247a622e8 100644 --- a/framework/core/js/src/forum/components/DiscussionPage.js +++ b/framework/core/js/src/forum/components/DiscussionPage.js @@ -115,7 +115,9 @@ export default class DiscussionPage extends Page { ); } - config() { + config(...args) { + super.config(...args); + if (this.discussion) { app.setTitle(this.discussion.title()); }