Repository: kylin
Updated Branches:
  refs/heads/2.0-rc 573109951 -> 3a0e92c9a


KYLIN-1357, hide last build time when cube cloned


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

Branch: refs/heads/2.0-rc
Commit: 3a0e92c9a11f1653262b5126fe3bc1b7db1dfccd
Parents: 5731099
Author: janzhongi <[email protected]>
Authored: Tue Jan 26 14:59:14 2016 +0800
Committer: janzhongi <[email protected]>
Committed: Tue Jan 26 14:59:14 2016 +0800

----------------------------------------------------------------------
 webapp/app/js/model/cubeListModel.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/kylin/blob/3a0e92c9/webapp/app/js/model/cubeListModel.js
----------------------------------------------------------------------
diff --git a/webapp/app/js/model/cubeListModel.js 
b/webapp/app/js/model/cubeListModel.js
index 5a2d1b2..13c924c 100755
--- a/webapp/app/js/model/cubeListModel.js
+++ b/webapp/app/js/model/cubeListModel.js
@@ -36,11 +36,11 @@ 
KylinApp.service('CubeList',function(CubeService,$q,AccessService){
                                 cube.last_build_time = 
cube.segments[i].last_build_time;
                                 break;
                             }else if(i===0){
-                                cube.last_build_time = cube.create_time_utc;
+                                cube.last_build_time = undefined;
                             }
                         }
                     } else {
-                        cube.last_build_time = cube.create_time_utc;
+                        cube.last_build_time = undefined;
                     }
                 }
             });

Reply via email to