From 07f63c82e2c914fdf209d0c80a7441c48a086ac6 Mon Sep 17 00:00:00 2001 From: csoler Date: Wed, 7 Nov 2018 21:45:44 +0100 Subject: [PATCH] fixed typo causing FT to show blank for transfer completion in webUI --- libresapi/src/webui-src/app/downloads.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libresapi/src/webui-src/app/downloads.js b/libresapi/src/webui-src/app/downloads.js index 28ec55897..af26e2c6b 100644 --- a/libresapi/src/webui-src/app/downloads.js +++ b/libresapi/src/webui-src/app/downloads.js @@ -23,7 +23,7 @@ function progressBar(file){ m("div[style=" + 'background-color:lime;' + 'height:100%;' - + 'width:' + (file.transfered / file.size * 100)+'%' + + 'width:' + (file.transferred / file.size * 100)+'%' + ']' ,"") ]);