diff options
author | Adam Young <ayoung@redhat.com> | 2011-03-31 15:32:29 -0400 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2011-03-31 17:29:33 -0400 |
commit | 6948c0813dff35afadd63bc0647271f00bfc566f (patch) | |
tree | 19a212045037900336bcf2cd963491f87a85a9d9 /install/ui/hostgroup.js | |
parent | ef57ee0d936a910407a940273f1dbd9ff084fffa (diff) | |
download | freeipa-6948c0813dff35afadd63bc0647271f00bfc566f.tar.gz freeipa-6948c0813dff35afadd63bc0647271f00bfc566f.tar.xz freeipa-6948c0813dff35afadd63bc0647271f00bfc566f.zip |
code review fixes
this version includes using spec for detail_facets
Diffstat (limited to 'install/ui/hostgroup.js')
-rw-r--r-- | install/ui/hostgroup.js | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/install/ui/hostgroup.js b/install/ui/hostgroup.js index 46f2ab68c..a1b5ede2e 100644 --- a/install/ui/hostgroup.js +++ b/install/ui/hostgroup.js @@ -29,16 +29,16 @@ IPA.entity_factories.hostgroup = function() { entity('hostgroup'). search_facet({columns:['cn','description'], add_fields:['cn','description']}). - details_facet([{ - section:'identity', + details_facet({sections:[{ + name:'identity', label: IPA.messages.objects.hostgroup.identity, fields:['cn','description'] - }]). + }]}). association_facet({ name: 'memberof_hostgroup', associator: IPA.serial_associator }). - standard_associations(). + standard_association_facets(). build(); }; |