You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@kylin.apache.org by nj...@apache.org on 2016/04/18 08:34:58 UTC

[16/50] kylin git commit: minor, UI remove streaming table prefix

minor, UI remove streaming table prefix


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

Branch: refs/heads/1.4-rc
Commit: e686d8580046e9f33b9ce928bdef654e22f62127
Parents: 43041af
Author: janzhongi <ji...@ebay.com>
Authored: Fri Feb 19 19:02:52 2016 +0800
Committer: janzhongi <ji...@ebay.com>
Committed: Fri Feb 19 19:02:52 2016 +0800

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


http://git-wip-us.apache.org/repos/asf/kylin/blob/e686d858/webapp/app/js/controllers/sourceMeta.js
----------------------------------------------------------------------
diff --git a/webapp/app/js/controllers/sourceMeta.js b/webapp/app/js/controllers/sourceMeta.js
index 6620060..8d9421f 100755
--- a/webapp/app/js/controllers/sourceMeta.js
+++ b/webapp/app/js/controllers/sourceMeta.js
@@ -176,7 +176,6 @@ KylinApp
     };
 
     var StreamingSourceCtrl = function ($scope, $location, $modalInstance, tableNames, MessageService, projectName, scope, tableConfig,cubeConfig) {
-      $scope.streamingPrefix = "STREAMING_";
       $scope.projectName = projectName;
       $scope.tableConfig = tableConfig;
       $scope.cubeConfig = cubeConfig;
@@ -303,7 +302,7 @@ KylinApp
 
 
         $scope.tableData = {
-          "name": $scope.streamingPrefix+$scope.table.name,
+          "name": $scope.table.name,
           "columns": columns,
           'database':'Default'
         }