From b1149ebb36ce93a434d464141ba2be7c1794291d Mon Sep 17 00:00:00 2001 From: Dominik Csapak Date: Tue, 1 Sep 2020 11:05:21 +0200 Subject: [PATCH] ui: DataStoreContent.js: fix wrong comma should be semicolon Signed-off-by: Dominik Csapak --- www/DataStoreContent.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/DataStoreContent.js b/www/DataStoreContent.js index 21623020..9beb3b1f 100644 --- a/www/DataStoreContent.js +++ b/www/DataStoreContent.js @@ -181,7 +181,7 @@ Ext.define('PBS.DataStoreContent', { data.children = []; for (const file of data.files) { - file.text = file.filename, + file.text = file.filename; file['crypt-mode'] = PBS.Utils.cryptmap.indexOf(file['crypt-mode']); file.leaf = true; file.matchesFilter = true;