Jelajahi Sumber

AMBARI-2155. Incorrect page display after closing Reassign Master Wizard. (yusaku)

git-svn-id: https://svn.apache.org/repos/asf/incubator/ambari/trunk@1483623 13f79535-47bb-0310-9956-ffa450edef68
Yusaku Sako 12 tahun lalu
induk
melakukan
e4d2fd65fe
2 mengubah file dengan 5 tambahan dan 2 penghapusan
  1. 3 0
      CHANGES.txt
  2. 2 2
      ambari-web/app/routes/reassign_master_routes.js

+ 3 - 0
CHANGES.txt

@@ -862,6 +862,9 @@ Trunk (unreleased changes):
 
  BUG FIXES
 
+ AMBARI-2155. Incorrect page display after closing Reassign Master Wizard.
+ (yusaku)
+
  AMBARI-2154. Unwanted auto scrolling on the Host detail page. (yusaku)
 
  AMBARI-2153. Reassign Master Wizard: Background Operations popup should show

+ 2 - 2
ambari-web/app/routes/reassign_master_routes.js

@@ -37,12 +37,12 @@ module.exports = Em.Route.extend({
           onPrimary:function () {
             this.hide();
             App.router.get('updateController').set('isWorking', true);
-            App.router.transitionTo('main.services');
+            App.router.transitionTo('main.services.index');
           },
           onClose: function() {
             this.hide();
             App.router.get('updateController').set('isWorking', true);
-            App.router.transitionTo('main.services')
+            App.router.transitionTo('main.services.index')
           },
           didInsertElement: function(){
             this.fitHeight();