mirror of
https://github.com/Icinga/icingaweb2.git
synced 2025-04-08 17:15:08 +02:00
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…
x
Reference in New Issue
Block a user