From 61c3b86d734389b2cd77b73030bd5293111e2cc5 Mon Sep 17 00:00:00 2001 From: Petr Vobornik Date: Wed, 4 Jul 2012 15:15:10 +0200 Subject: Moved configuration to last position in navigation Configaration was the last navigation item in IPA server tab. Trusts changed it. It was wrong because configuration is like 'other settings' and so it should be last. This patch moves configuration navigation item to the last position again. https://fedorahosted.org/freeipa/ticket/2900 --- install/ui/webui.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'install/ui/webui.js') diff --git a/install/ui/webui.js b/install/ui/webui.js index 9b7c31be..0be4b1b6 100644 --- a/install/ui/webui.js +++ b/install/ui/webui.js @@ -84,8 +84,8 @@ IPA.admin_navigation = function(spec) { ]}, {entity: 'selfservice'}, {entity: 'delegation'}, - {entity: 'config'}, - {entity: 'trust'} + {entity: 'trust'}, + {entity: 'config'} ]}]; var that = IPA.navigation(spec); -- cgit