1
0
mirror of https://github.com/flarum/core.git synced 2025-10-15 08:55:53 +02:00

Merge pull request #2465 from flarum/0.1.0-beta.14.1

This commit is contained in:
Alexander Skvortsov
2020-11-29 17:45:58 -05:00
committed by GitHub
4 changed files with 13 additions and 3 deletions

View File

@@ -270,7 +270,7 @@ export default class Application {
updateTitle() {
const count = this.titleCount ? `(${this.titleCount}) ` : '';
const pageTitleWithSeparator = this.title && m.route.get() !== '/' ? this.title + ' - ' : '';
const pageTitleWithSeparator = this.title && m.route.get() !== this.forum.attribute('basePath') + '/' ? this.title + ' - ' : '';
const title = this.forum.attribute('title');
document.title = count + pageTitleWithSeparator + title;
}