diff options
author | Endi S. Dewata <edewata@redhat.com> | 2011-08-05 10:15:53 -0500 |
---|---|---|
committer | Adam Young <ayoung@redhat.com> | 2011-08-08 12:00:07 -0400 |
commit | d08dcb40e1db63d4b40d911bb15a656f0dcbf8ae (patch) | |
tree | d14e09a7acc96ba50bfd339fa0947c7dcad049d2 /install/ui/automount.js | |
parent | 8519967ef139d607b9ec4d9e4d3ff087fe14b3f1 (diff) | |
download | freeipa-d08dcb40e1db63d4b40d911bb15a656f0dcbf8ae.tar.gz freeipa-d08dcb40e1db63d4b40d911bb15a656f0dcbf8ae.tar.xz freeipa-d08dcb40e1db63d4b40d911bb15a656f0dcbf8ae.zip |
Fixed facet group labels.
The facet group labels have been modified according to UXD spec.
Some facet groups will have more descriptive labels. Some others
will not have any labels because the facet tab is self-explanatory.
Ticket #1423, #1561
Diffstat (limited to 'install/ui/automount.js')
-rw-r--r-- | install/ui/automount.js | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/install/ui/automount.js b/install/ui/automount.js index 56c6c9cee..dc0ca4e67 100644 --- a/install/ui/automount.js +++ b/install/ui/automount.js @@ -29,12 +29,13 @@ IPA.entity_factories.automountlocation = function() { return IPA.entity_builder(). entity({ name: 'automountlocation' }). + facet_groups([ 'automountmap', 'settings' ]). search_facet({ title: IPA.metadata.objects.automountlocation.label, columns:['cn'] }). nested_search_facet({ - facet_group: 'member', + facet_group: 'automountmap', nested_entity : 'automountmap', label : IPA.metadata.objects.automountmap.label, name: 'maps', @@ -58,8 +59,9 @@ IPA.entity_factories.automountmap = function() { return IPA.entity_builder(). entity({ name: 'automountmap' }). containing_entity('automountlocation'). + facet_groups([ 'automountkey', 'settings' ]). nested_search_facet({ - facet_group: 'member', + facet_group: 'automountkey', nested_entity : 'automountkey', label : IPA.metadata.objects.automountkey.label, name: 'keys', |