[pbs-devel] [PATCH proxmox-backup 2/2] ui: DataStoreContent.js: fix wrong comma

Dominik Csapak d.csapak at proxmox.com
Tue Sep 1 11:05:21 CEST 2020


should be semicolon

Signed-off-by: Dominik Csapak <d.csapak at proxmox.com>
---
 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;
-- 
2.20.1






More information about the pbs-devel mailing list