utils: render upid: htmlEncode UPID

to avoid interpreting HTML.

Signed-off-by: Friedrich Weber <f.weber@proxmox.com>
This commit is contained in:
Friedrich Weber 2025-03-31 11:20:20 +02:00 committed by Thomas Lamprecht
parent 68a3518d13
commit d19dbe892b

View File

@ -808,7 +808,7 @@ utilities: {
let type = task.type || task.worker_type;
let id = task.id || task.worker_id;
return Proxmox.Utils.format_task_description(type, id);
return Ext.htmlEncode(Proxmox.Utils.format_task_description(type, id));
},
render_uptime: function(value) {