diff options
Diffstat (limited to 'install/ui/hostgroup.js')
-rw-r--r-- | install/ui/hostgroup.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/install/ui/hostgroup.js b/install/ui/hostgroup.js index a1b5ede2e..31f4c5250 100644 --- a/install/ui/hostgroup.js +++ b/install/ui/hostgroup.js @@ -27,8 +27,7 @@ IPA.entity_factories.hostgroup = function() { return IPA.entity_builder(). entity('hostgroup'). - search_facet({columns:['cn','description'], - add_fields:['cn','description']}). + search_facet({columns:['cn','description']}). details_facet({sections:[{ name:'identity', label: IPA.messages.objects.hostgroup.identity, @@ -39,6 +38,9 @@ IPA.entity_factories.hostgroup = function() { associator: IPA.serial_associator }). standard_association_facets(). + adder_dialog({ + fields:['cn','description'] + }). build(); }; |