Przeglądaj źródła

AMBARI-5339 Checkboxes displayed incorrectly on "Assign Slaves and Clients" page on Install wizard. (ababiichuk)

aBabiichuk 11 lat temu
rodzic
commit
2ab58cfb59
1 zmienionych plików z 3 dodań i 0 usunięć
  1. 3 0
      ambari-web/app/views/wizard/step6_view.js

+ 3 - 0
ambari-web/app/views/wizard/step6_view.js

@@ -86,6 +86,9 @@ App.WizardStep6View = App.TableView.extend({
     disabledBinding: 'checkbox.isInstalled',
 
     click: function () {
+      if ($.browser.mozilla) {
+        this.toggleProperty('checkbox.checked');
+      }
       this.get('controller').checkCallback(this.get('checkbox.component'));
     }
   })