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
This commit is contained in:
Petr Vobornik 2012-07-04 15:15:10 +02:00 committed by Alexander Bokovoy
parent 8c5504d26a
commit 61c3b86d73

View File

@ -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);