Commit bdb16c094692ee2ea0780a0695149bf7c20e2a7d
1 parent
1b4df27c
Exists in
master
and in
38 other branches
Fix navbar links
Showing
1 changed file
with
2 additions
and
2 deletions
Show diff stats
src/app/components/navbar/navbar.html
... | ... | @@ -29,10 +29,10 @@ |
29 | 29 | </a> |
30 | 30 | <ul class="dropdown-menu" dropdown-menu> |
31 | 31 | <li> |
32 | - <a href="#"><i class="fa fa-fw fa-user"></i> Profile</a> | |
32 | + <a ng-href="/{{vm.currentUser.person.identifier}}"><i class="fa fa-fw fa-user"></i> Profile</a> | |
33 | 33 | </li> |
34 | 34 | <li> |
35 | - <a href="#"><i class="fa fa-fw fa-gear"></i> Settings</a> | |
35 | + <a target="_self" ng-href="/myprofile/{{vm.currentUser.person.identifier}}"><i class="fa fa-fw fa-gear"></i> Settings</a> | |
36 | 36 | </li> |
37 | 37 | <li class="divider"></li> |
38 | 38 | <li> | ... | ... |