Skip to content

Commit

Permalink
Issue 2: Make 'edit my profile' open in new tab
Browse files Browse the repository at this point in the history
  • Loading branch information
kaladay committed Apr 13, 2020
1 parent e0cfeec commit dc74d00
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/app/shared/navigation/navigation.component.html
Original file line number Diff line number Diff line change
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 dc74d00

Please sign in to comment.