diff --git a/index.html b/index.html
index c0a68ec73..531256c97 100644
--- a/index.html
+++ b/index.html
@@ -148,7 +148,7 @@
document.getElementById('app-loading-title').innerHTML = systemConfig.projectName
function replaceFavicon(src) {
var link = document.querySelector("link[rel~='icon']");
- if (!link) {
+ if (!link){
link = document.createElement('link');
link.rel = 'icon';
document.getElementsByTagName('head')[0].appendChild(link);
@@ -156,6 +156,7 @@
link.href = src;
}
replaceFavicon(systemConfig.iconUrl);
+ document.title = systemConfig.projectName;