فهرست منبع

AMBARI-3224. Progress bar is shown in green rather than blue. (onechiporenko)

Oleg Nechiporenko 11 سال پیش
والد
کامیت
9b0eddc744
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      ambari-web/app/views/wizard/step9_view.js

+ 2 - 2
ambari-web/app/views/wizard/step9_view.js

@@ -93,8 +93,8 @@ App.HostStatusView = Em.View.extend({
         this.set('obj.message', Em.I18n.t('installer.step9.host.status.failed'));
       }
     } else if (this.get('obj.status') === 'success') {
-      this.set('barColor', 'progress-success');
-      if (this.get('obj.progress') === '100') {
+      if (this.get('obj.progress') == 100) {
+        this.set('barColor', 'progress-success');
         this.set('obj.message', Em.I18n.t('installer.step9.host.status.success'));
       }
     }