You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ambari.apache.org by sr...@apache.org on 2015/10/30 17:12:28 UTC

ambari git commit: AMBARI-13651. Hive View Data Visualization - Change of Tab Order (Pallav Kulshreshtha via srimanth)

Repository: ambari
Updated Branches:
  refs/heads/branch-2.1 fee711d96 -> 3ce134d71


AMBARI-13651. Hive View Data Visualization - Change of Tab Order (Pallav Kulshreshtha via srimanth)


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

Branch: refs/heads/branch-2.1
Commit: 3ce134d711f21b251accc863adbd0b5bb7c22b91
Parents: fee711d
Author: Srimanth Gunturi <sg...@hortonworks.com>
Authored: Fri Oct 30 09:12:11 2015 -0700
Committer: Srimanth Gunturi <sg...@hortonworks.com>
Committed: Fri Oct 30 09:12:11 2015 -0700

----------------------------------------------------------------------
 .../ui/hive-web/app/controllers/visualization-ui.js       | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ambari/blob/3ce134d7/contrib/views/hive/src/main/resources/ui/hive-web/app/controllers/visualization-ui.js
----------------------------------------------------------------------
diff --git a/contrib/views/hive/src/main/resources/ui/hive-web/app/controllers/visualization-ui.js b/contrib/views/hive/src/main/resources/ui/hive-web/app/controllers/visualization-ui.js
index fd0645b..c908afd 100644
--- a/contrib/views/hive/src/main/resources/ui/hive-web/app/controllers/visualization-ui.js
+++ b/contrib/views/hive/src/main/resources/ui/hive-web/app/controllers/visualization-ui.js
@@ -41,14 +41,14 @@ export default Ember.Controller.extend({
   visualizationTabs: function () {
     return [
       Ember.Object.create({
+        name: 'Data Visualization',
+        id: 'visualization',
+        url: this.get('polestarUrl')
+      }),
+      Ember.Object.create({
         name: 'Data Explorer',
         id: 'data_explorer',
         url: this.get('voyagerUrl')
-      }),
-      Ember.Object.create({
-        name: 'Advanced Visualization',
-        id: 'visualization',
-        url: this.get('polestarUrl')
       })
     ]
   }.property('polestarUrl', 'voyagerUrl'),