You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by lu...@apache.org on 2015/09/06 09:39:53 UTC

[47/50] [abbrv] incubator-kylin git commit: KYLIN-946 , fix selectedNode NULL exception

KYLIN-946 ,fix selectedNode NULL exception


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

Branch: refs/heads/master
Commit: 0bded592194dc977c4390a64f81f6e364b1f9ae7
Parents: c2b8068
Author: jiazhong <ji...@ebay.com>
Authored: Mon Aug 24 15:05:37 2015 +0800
Committer: Luke Han <lu...@apache.org>
Committed: Thu Aug 27 08:52:52 2015 +0800

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


http://git-wip-us.apache.org/repos/asf/incubator-kylin/blob/0bded592/webapp/app/js/controllers/sourceMeta.js
----------------------------------------------------------------------
diff --git a/webapp/app/js/controllers/sourceMeta.js b/webapp/app/js/controllers/sourceMeta.js
index 554e128..91e771b 100755
--- a/webapp/app/js/controllers/sourceMeta.js
+++ b/webapp/app/js/controllers/sourceMeta.js
@@ -77,7 +77,7 @@ KylinApp
     };
 
     $scope.selectedNode = function(obj){
-      if (obj.uuid) {
+      if (obj&&obj.uuid) {
         return $scope.tableModel.selectedSrcTable;
       }
     }