diff --git a/app/js/filters.js b/app/js/filters.js index a4ca7102..7233c7a6 100644 --- a/app/js/filters.js +++ b/app/js/filters.js @@ -157,7 +157,7 @@ angular.module('myApp.filters', ['myApp.i18n']) return size + ' b'; } else if (size < 1048576) { - return Math.round(size / 1024) + ' Kb'; + return Math.round(size / 1024) + ' KB'; } var mbs = size / 1048576; if (progressing) {