Fix rename method in html template

This commit is contained in:
oyurov 2022-10-12 12:02:27 +02:00
parent 39739bc05e
commit c9d481b3f0

View File

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