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:
parent
9f8fb928f1
commit
d3a570eb79
|
@ -103,7 +103,7 @@ Ext.define('PBS.config.SyncJobView', {
|
||||||
|
|
||||||
render_optional_owner: function(value, metadata, record) {
|
render_optional_owner: function(value, metadata, record) {
|
||||||
if (!value) return '-';
|
if (!value) return '-';
|
||||||
return Ext.String.htmlEncode(value, metadata, record);
|
return Ext.String.htmlEncode(value);
|
||||||
},
|
},
|
||||||
|
|
||||||
startStore: function() { this.getView().getStore().rstore.startUpdate(); },
|
startStore: function() { this.getView().getStore().rstore.startUpdate(); },
|
||||||
|
|
Loading…
Reference in New Issue