From c480d370ad21274c80a8fe61f71000ba3f25d977 Mon Sep 17 00:00:00 2001 From: Igor Zhukov Date: Tue, 30 Jun 2015 14:17:52 +0300 Subject: [PATCH] Kb to KB As in #822 --- app/js/filters.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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) {