Browse Source

AMBARI-12987. Edit button on Admin->kerberos page does not work. (jaimin)

Jaimin Jetly 10 years ago
parent
commit
b9a0b39ca3
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ambari-web/app/controllers/main/admin/kerberos.js

+ 1 - 1
ambari-web/app/controllers/main/admin/kerberos.js

@@ -466,7 +466,7 @@ App.MainAdminKerberosController = App.KerberosWizardStep4Controller.extend({
 
 
   makeConfigsEditable: function () {
-    if (!this.get('stepConfigs') || !this.get('stepConfigs.length')) {
+    if (this.get('stepConfigs') && this.get('stepConfigs.length')) {
       this.set('isEditMode', true);
       this.get('stepConfigs').forEach(function (_stepConfig) {
         _stepConfig.get('configs').setEach('isEditable', true);