Browse Source

AMBARI-3128. BG Ops popup behaving strangely after security was enabled. (Andrii Babiichuk via yusaku)

Yusaku Sako 11 years ago
parent
commit
2fd989f11f

+ 1 - 1
ambari-web/app/controllers/global/background_operations_controller.js

@@ -111,7 +111,7 @@ App.BackgroundOperationsController = Em.Controller.extend({
    */
   showPopup: function(){
     App.updater.immediateRun('requestMostRecent');
-    if(this.get('popupView')){
+    if(this.get('popupView') && App.HostPopup.get('showServices')){
       this.set('popupView.isOpen', true);
       $(this.get('popupView.element')).appendTo('#wrapper');
     } else {