Browse Source

AMBARI-10134. Install Wizard: Install, Start and Test page shows Views icon in top nav, but it is not functional (clicking does nothing) (alexantonenko)

Alex Antonenko 10 years ago
parent
commit
0fe14ef0c6
1 changed files with 3 additions and 2 deletions
  1. 3 2
      ambari-web/app/routes/installer.js

+ 3 - 2
ambari-web/app/routes/installer.js

@@ -381,8 +381,9 @@ module.exports = Em.Route.extend(App.RouterRedirections, {
       }
       }
     },
     },
     unroutePath: function (router, context) {
     unroutePath: function (router, context) {
-      // exclusion for transition to Admin View
-      if (context === '/adminView') {
+      // exclusion for transition to Admin view or Views view
+      if (context === '/adminView' ||
+          context === '/main/views.index') {
         this._super(router, context);
         this._super(router, context);
       } else {
       } else {
         return false;
         return false;