summaryrefslogtreecommitdiffstats
path: root/install/static/hbacsvcgroup.js
diff options
context:
space:
mode:
Diffstat (limited to 'install/static/hbacsvcgroup.js')
-rwxr-xr-xinstall/static/hbacsvcgroup.js13
1 files changed, 8 insertions, 5 deletions
diff --git a/install/static/hbacsvcgroup.js b/install/static/hbacsvcgroup.js
index 056c8fab..121fad67 100755
--- a/install/static/hbacsvcgroup.js
+++ b/install/static/hbacsvcgroup.js
@@ -109,15 +109,18 @@ function ipa_hbacsvcgroup_search_facet(spec) {
var ul = $('ul', action_panel);
+ /*Note that we add these at the top of the action panel
+ so that the HBAC entities always show in the same order.*/
+ $('<li/>', {
+ title: 'hbacsvc',
+ text: 'HBAC Services'
+ }).prependTo(ul);
+
$('<li/>', {
title: 'hbac',
text: 'HBAC Rules'
- }).appendTo(ul);
+ }).prependTo(ul);
- $('<li/>', {
- title: 'hbacsvc',
- text: 'HBAC Services'
- }).appendTo(ul);
that.search_facet_create(container);