Commit 0327a32c authored by Dietmar Maurer's avatar Dietmar Maurer

correctly encode html

parent 45c04975
...@@ -13,7 +13,7 @@ Ext.define('PVE.node.CephCrushMap', { ...@@ -13,7 +13,7 @@ Ext.define('PVE.node.CephCrushMap', {
}, },
success: function(response, opts) { success: function(response, opts) {
var data = response.result.data; var data = response.result.data;
me.update(data); me.update(Ext.htmlEncode(data));
} }
}); });
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment