From 91dc7c3d9a7aea91807e98ff7b58643b352825cd Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Fri, 9 Dec 2011 16:37:32 +0100 Subject: Reordered facets in ACI Facets in ACI have new order: * Roles: members, privileges, settings * Privileges: permissions, settings, roles * Permissions: settings, privileges https://fedorahosted.org/freeipa/ticket/2104 --- install/ui/aci.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install/ui/aci.js b/install/ui/aci.js index 30f5de792..c1f1ce9cc 100644 --- a/install/ui/aci.js +++ b/install/ui/aci.js @@ -32,7 +32,7 @@ IPA.aci.permission_entity = function(spec) { that.init = function() { that.entity_init(); - that.builder.facet_groups([ 'privilege' , 'settings' ]). + that.builder.facet_groups(['settings', 'privilege']). search_facet({ columns: [ 'cn' ] }). @@ -207,7 +207,7 @@ IPA.aci.privilege_entity = function(spec) { that.init = function() { that.entity_init(); - that.builder.facet_groups([ 'role', 'settings', 'permission' ]). + that.builder.facet_groups(['permission', 'settings', 'role']). search_facet({ columns: [ 'cn', @@ -264,7 +264,7 @@ IPA.aci.role_entity = function(spec) { that.init = function() { that.entity_init(); - that.builder.facet_groups([ 'member', 'settings', 'privilege' ]). + that.builder.facet_groups(['member', 'privilege', 'settings']). search_facet({ columns: [ 'cn', -- cgit