Skip to content

Commit

Permalink
comment out footer links for auth and administration
Browse files Browse the repository at this point in the history
  • Loading branch information
wwelling committed Sep 20, 2019
1 parent 3d3965d commit 0232dfd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/footer/footer.component.html
Expand Up @@ -2,7 +2,7 @@
<div class="footer">
<ul class="list-inline text-center" *ngIf="footer | async; let footer">
<li class="list-inline-item" *ngFor="let link of footer.links"><a href="{{link.uri}}">{{link.label}}</a></li>
<li class="list-inline-item" *ngIf="(isAdmin | async)">
<!-- <li class="list-inline-item" *ngIf="(isAdmin | async)">
<a [routerLink]="['/admin']">{{ 'FOOTER.ADMINISTRATION' | translate }}</a>
</li>
<li class="list-inline-item" *ngIf="!(isAuthenticated | async)">
Expand All @@ -16,6 +16,6 @@
</li>
<li class="list-inline-item" *ngIf="user | async; let user">
<span>{{user.email}}</span>
</li>
</li> -->
</ul>
</div>

0 comments on commit 0232dfd

Please sign in to comment.