From 4faf7bfd3cc26565ed15e622d5f9d3d918e0a6de Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9mie=20Astori?= Date: Mon, 18 Feb 2019 00:35:04 -0500 Subject: [PATCH] Remove network name from window title It can be redundant on network tab. --- client/js/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/js/utils.js b/client/js/utils.js index f3c73a8d..157833e9 100644 --- a/client/js/utils.js +++ b/client/js/utils.js @@ -85,7 +85,7 @@ function updateTitle() { let title = vueApp.appName; if (vueApp.activeChannel) { - title = `${vueApp.activeChannel.channel.name} — ${vueApp.activeChannel.network.name} — ${title}`; + title = `${vueApp.activeChannel.channel.name} — ${title}`; } // add highlight count to title