瀏覽代碼

AMBARI-5279. Jobs UI - refresh new jobs link needlessly showing up (alexantonenko)

Alex Antonenko 11 年之前
父節點
當前提交
b5f48c752b
共有 1 個文件被更改,包括 2 次插入0 次删除
  1. 2 0
      ambari-web/app/controllers/main/jobs_controller.js

+ 2 - 0
ambari-web/app/controllers/main/jobs_controller.js

@@ -359,6 +359,8 @@ App.MainJobsController = Em.Controller.extend({
       if (this.get('lastJobID') !== lastReceivedID) {
         this.set('lastJobID', lastReceivedID);
         this.set('hasNewJobs', true);
+      }else{
+        this.set('hasNewJobs', false);
       }
     }
   },