Showing
1 changed file
with
3 additions
and
3 deletions
... | ... | @@ -56,10 +56,10 @@ |
56 | 56 | <div class="line"><mat-divider></mat-divider></div> |
57 | 57 | </div> |
58 | 58 | <ng-container *ngFor="let oauth2Client of oauth2Clients"> |
59 | - <button mat-raised-button color="primary" class="centered" routerLink="{{ oauth2Client.url }}"> | |
60 | - <mat-icon class="material-icons md-18" svgIcon="{{ oauth2Client.icon }}"></mat-icon> | |
59 | + <a mat-raised-button color="primary" class="centered" href="{{ oauth2Client.url }}"> | |
60 | + <mat-icon svgIcon="{{ oauth2Client.icon }}"></mat-icon> | |
61 | 61 | {{ 'login.login-with' | translate: {name: oauth2Client.name} }} |
62 | - </button> | |
62 | + </a> | |
63 | 63 | </ng-container> |
64 | 64 | </div> |
65 | 65 | </div> | ... | ... |