Skip to content

Commit

Permalink
Merge pull request #6 from TAMULib/tamu-sprint10-2
Browse files Browse the repository at this point in the history
Issue 2: Make 'edit my profile' open in new tab
  • Loading branch information
kaladay committed Apr 13, 2020
2 parents d029d69 + dc74d00 commit 391a665
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/shared/navigation/navigation.component.html
Expand Up @@ -27,12 +27,12 @@
<a class="nav-link" href="https://scholars.library.tamu.edu/about_scholars">{{ 'SHARED.NAVIGATION.ABOUT' | translate }}</a>
</li>
<li *ngIf="vivoEditorUrl" class="nav-item d-sm-none">
<a class="nav-link edit-profile-action" [href]="vivoEditorUrl">{{ 'SHARED.NAVIGATION.EDIT_PROFILE' | translate }}</a>
<a class="nav-link edit-profile-action" [href]="vivoEditorUrl" target="_blank">{{ 'SHARED.NAVIGATION.EDIT_PROFILE' | translate }}</a>
</li>
</ul>
</div>
<div *ngIf="vivoEditorUrl" class="nav navbar-nav d-none d-sm-block">
<a class="btn btn-outline-primary edit-profile-action" [href]="vivoEditorUrl">{{ 'SHARED.NAVIGATION.EDIT_PROFILE' | translate }}</a>
<a class="btn btn-outline-primary edit-profile-action" [href]="vivoEditorUrl" target="_blank">{{ 'SHARED.NAVIGATION.EDIT_PROFILE' | translate }}</a>
</div>
</div>
</nav>
</nav>

0 comments on commit 391a665

Please sign in to comment.