From d3a570eb794c559745ecff042cb079518be7ff2d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fabian=20Gr=C3=BCnbichler?= Date: Tue, 10 May 2022 15:02:42 +0200 Subject: [PATCH] ui: fix wrong call to htmlEncode MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Fabian Grünbichler Signed-off-by: Thomas Lamprecht --- www/config/SyncView.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/config/SyncView.js b/www/config/SyncView.js index 8f566f84..92ba15d3 100644 --- a/www/config/SyncView.js +++ b/www/config/SyncView.js @@ -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(); },