Repository: kylin Updated Branches: refs/heads/2.0-rc 43041af1a -> e686d8580
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/2.0-rc Commit: e686d8580046e9f33b9ce928bdef654e22f62127 Parents: 43041af Author: janzhongi <[email protected]> Authored: Fri Feb 19 19:02:52 2016 +0800 Committer: janzhongi <[email protected]> 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' }
