Commit 662e05e9a0d37a98dbc27ef9bfbca318f7f61604

Authored by Igor Kulikov
1 parent 8ebc0190

Fix oauth2 login button

... ... @@ -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>
... ...