From a2cac45c0e23e23425ed0186481cb8c3b9bcb044 Mon Sep 17 00:00:00 2001 From: daniel-j Date: Thu, 5 Mar 2020 14:38:58 +0100 Subject: [PATCH] add space --- upload.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/upload.html b/upload.html index 5d54085..31ba498 100644 --- a/upload.html +++ b/upload.html @@ -83,7 +83,7 @@ function fileinputChange () { fileinfo.textContent = '' return } - fileinfo.textContent = parseInt(fileinput.files[0].size / 1024, 10) + 'kB' + fileinfo.textContent = parseInt(fileinput.files[0].size / 1024, 10) + ' kB' } fileinput.addEventListener('change', fileinputChange, false) fileinputChange()