diff --git a/resource/static/main.js b/resource/static/main.js
index f32acef..2aedffb 100644
--- a/resource/static/main.js
+++ b/resource/static/main.js
@@ -1,13 +1,7 @@
-/**
- * Converts a long string of bytes into a readable format e.g KB, MB, GB, TB, YB
- *
- * @param {Int} num The number of bytes.
- */
function readableBytes(bytes) {
var i = Math.floor(Math.log(bytes) / Math.log(1024)),
sizes = ['B', 'KB', 'MB', 'GB', 'TB', 'PB', 'EB', 'ZB', 'YB'];
-
- return (bytes / Math.pow(1024, i)).toFixed(2) * 1 + ' ' + sizes[i];
+ return (bytes / Math.pow(1024, i)).toFixed(0) + ' ' + sizes[i];
}
const confirmBtn = $('.mini.confirm.modal .positive.button')
diff --git a/resource/template/common/footer.html b/resource/template/common/footer.html
index 60f9ffb..96322dd 100644
--- a/resource/template/common/footer.html
+++ b/resource/template/common/footer.html
@@ -9,7 +9,7 @@
-
+