From 066bdd4f12728c1343353a3e7fc89e538e3fffbd Mon Sep 17 00:00:00 2001 From: Sahat Yalkabov Date: Tue, 28 Jan 2014 23:43:01 -0500 Subject: [PATCH] Display user email if Full Name is not present --- views/partials/navigation.jade | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/partials/navigation.jade b/views/partials/navigation.jade index e66fc55f87..de614c440d 100644 --- a/views/partials/navigation.jade +++ b/views/partials/navigation.jade @@ -26,7 +26,7 @@ a.dropdown-toggle(href='#', data-toggle='dropdown') if user.profile.picture img.profile-image(src='#{user.profile.picture}') - | #{user.profile.name || user.id}  + | #{user.profile.name || user.email || user.id}  i.caret ul.dropdown-menu li: a(href='/account') My Account