From d3f74d2b7cee01001e6ede2ba59dcb34522b59cf Mon Sep 17 00:00:00 2001 From: "Endi S. Dewata" Date: Fri, 6 May 2011 15:32:51 -0400 Subject: Fixed self-service UI. The Identity tab for self-service UI was missing a label and there was a bug in navigation.js that was exposed because of that. --- install/ui/navigation.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'install/ui/navigation.js') diff --git a/install/ui/navigation.js b/install/ui/navigation.js index 2fd3e513..837cef18 100644 --- a/install/ui/navigation.js +++ b/install/ui/navigation.js @@ -145,10 +145,10 @@ IPA.navigation = function(spec) { continue; } tab.entity = entity; - } - if (!tab.label) { - tab.label = entity.label; + if (!tab.label) { + tab.label = entity.label; + } } $('
  • ').append($('', { -- cgit