You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by ma...@apache.org on 2016/03/02 06:41:52 UTC

[02/29] kylin git commit: KYLIN-1423 for segment size display, update 'N/A' to 'less than 1 MB'

KYLIN-1423 for segment size display, update 'N/A' to 'less than 1 MB'


Project: http://git-wip-us.apache.org/repos/asf/kylin/repo
Commit: http://git-wip-us.apache.org/repos/asf/kylin/commit/e80b2008
Tree: http://git-wip-us.apache.org/repos/asf/kylin/tree/e80b2008
Diff: http://git-wip-us.apache.org/repos/asf/kylin/diff/e80b2008

Branch: refs/heads/1.x-HBase1.1.3
Commit: e80b2008b5389da8a64ff65768e18949259a5a72
Parents: 19ee6cc
Author: janzhongi <ji...@ebay.com>
Authored: Wed Feb 24 11:47:13 2016 +0800
Committer: janzhongi <ji...@ebay.com>
Committed: Wed Feb 24 11:47:13 2016 +0800

----------------------------------------------------------------------
 webapp/app/js/filters/filter.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/e80b2008/webapp/app/js/filters/filter.js
----------------------------------------------------------------------
diff --git a/webapp/app/js/filters/filter.js b/webapp/app/js/filters/filter.js
index 5fd664e..859b432 100755
--- a/webapp/app/js/filters/filter.js
+++ b/webapp/app/js/filters/filter.js
@@ -83,7 +83,7 @@ KylinApp
   .filter('bytes', function () {
     return function (bytes, precision) {
       if (bytes === 0) {
-        return 'N/A';
+        return 'less than 1 MB';
       }
       if (isNaN(parseFloat(bytes)) || !isFinite(bytes)) {
         return '-';