ui: fix wrong call to htmlEncode

Signed-off-by: Fabian Grünbichler <f.gruenbichler@proxmox.com>
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
Fabian Grünbichler 2022-05-10 15:02:42 +02:00 committed by Thomas Lamprecht
parent 9f8fb928f1
commit d3a570eb79
1 changed files with 1 additions and 1 deletions

View File

@ -103,7 +103,7 @@ Ext.define('PBS.config.SyncJobView', {
render_optional_owner: function(value, metadata, record) {
if (!value) return '-';
return Ext.String.htmlEncode(value, metadata, record);
return Ext.String.htmlEncode(value);
},
startStore: function() { this.getView().getStore().rstore.startUpdate(); },