mirror of
https://github.com/thelounge/thelounge
synced 2024-11-23 12:33:07 +00:00
Merge pull request #3062 from thelounge/astorije/fix-title
Remove network name from window title
This commit is contained in:
commit
c9c9748959
1 changed files with 1 additions and 1 deletions
|
@ -85,7 +85,7 @@ function updateTitle() {
|
||||||
let title = vueApp.appName;
|
let title = vueApp.appName;
|
||||||
|
|
||||||
if (vueApp.activeChannel) {
|
if (vueApp.activeChannel) {
|
||||||
title = `${vueApp.activeChannel.channel.name} — ${vueApp.activeChannel.network.name} — ${title}`;
|
title = `${vueApp.activeChannel.channel.name} — ${title}`;
|
||||||
}
|
}
|
||||||
|
|
||||||
// add highlight count to title
|
// add highlight count to title
|
||||||
|
|
Loading…
Reference in a new issue