diff options
Diffstat (limited to '')
| -rw-r--r-- | ufund-ui/src/app/app.component.html | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/ufund-ui/src/app/app.component.html b/ufund-ui/src/app/app.component.html index 959eada..f697695 100644 --- a/ufund-ui/src/app/app.component.html +++ b/ufund-ui/src/app/app.component.html @@ -5,9 +5,9 @@          </a>      </div>      <div> -        <a routerLink="/dashboard">Dashboard</a> +        <a *ngIf="(currentUser | async)?.type === userType.MANAGER" routerLink="/dashboard">Dashboard</a>          <a routerLink="/cupboard">Cupboard</a> -        <a routerLink="/basket">Basket</a> +        <a *ngIf="(currentUser | async)?.type === userType.HELPER" routerLink="/basket">Basket</a>  <!--        <span>{{currentUser$ | async}}</span>-->          <button *ngIf="currentUser | async" (click)="logout()"> Log Out</button>          <button *ngIf="!(currentUser | async)" (click)="login()"> Log In</button>  | 
