Browse Source

Fix rename method in html template

pull/7278/head
oyurov 4 years ago
parent
commit
c9d481b3f0
  1. 2
      ui-ngx/src/app/modules/login/pages/login/login.component.html

2
ui-ngx/src/app/modules/login/pages/login/login.component.html

@ -30,7 +30,7 @@
<span style="height: 50px;"></span>
<div class="oauth-container tb-default" fxLayout="column" fxLayoutGap="16px" *ngIf="oauth2Clients?.length">
<ng-container *ngFor="let oauth2Client of oauth2Clients">
<a mat-raised-button class="login-with-button" href="{{ addPrevUriIfExists(oauth2Client) }}">
<a mat-raised-button class="login-with-button" href="{{ getOAuth2Uri(oauth2Client) }}">
<mat-icon class="icon" svgIcon="{{ oauth2Client.icon }}"></mat-icon>
{{ 'login.login-with' | translate: {name: oauth2Client.name} }}
</a>

Loading…
Cancel
Save