Encoding: decode encoded titles
Related to the last commit, forgot to decode titles
This commit is contained in:
parent
88460189cd
commit
e7e7ae72ba
|
@ -341,7 +341,7 @@
|
|||
|
||||
var title = req.getResponseHeader('X-Icinga-Title');
|
||||
if (title && ! req.autorefresh && req.$target.closest('.dashboard').length === 0) {
|
||||
this.icinga.ui.setTitle(title);
|
||||
this.icinga.ui.setTitle(decodeURIComponent(title));
|
||||
}
|
||||
|
||||
var refresh = req.getResponseHeader('X-Icinga-Refresh');
|
||||
|
|
Loading…
Reference in New Issue