Browse Source

AMBARI-4051. Delete Group button is disabled in Manage Dialog in Installer. Additional patch. (akovalenko)

Aleksandr Kovalenko 11 years ago
parent
commit
336e4b34b4
1 changed files with 2 additions and 2 deletions
  1. 2 2
      ambari-web/app/views/main/service/manage_config_groups_view.js

+ 2 - 2
ambari-web/app/views/main/service/manage_config_groups_view.js

@@ -71,8 +71,8 @@ App.MainServiceManageConfigGroupView = Em.View.extend({
   },
 
   selectDefaultGroup: function () {
-    if ('controller.isLoaded') {
-      this.set('selectedConfigGroup', this.get('controller.configGroups').findProperty('isDefault'));
+    if (this.get('controller.isLoaded')) {
+      this.set('selectedConfigGroup', [this.get('controller.configGroups').findProperty('isDefault')]);
     }
   }.observes('controller.isLoaded'),