diff options
Diffstat (limited to 'install/static/hbacsvc.js')
-rwxr-xr-x | install/static/hbacsvc.js | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/install/static/hbacsvc.js b/install/static/hbacsvc.js index 26a2e8a0..7dca90ec 100755 --- a/install/static/hbacsvc.js +++ b/install/static/hbacsvc.js @@ -98,10 +98,13 @@ function ipa_hbacsvc_search_facet(spec) { var ul = $('ul', action_panel); + /*Note that we add the rules at the top of the action panel + so that the HBAC entities always show in the same order.*/ + $('<li/>', { title: 'hbac', text: 'HBAC Rules' - }).appendTo(ul); + }).prependTo(ul); $('<li/>', { title: 'hbacsvcgroup', |