feature/migrate to Angular control flow syntax (#4321)
* Migrate to Angular control flow syntax * Update changelogpull/4328/head^2
parent
ec098c8d68
commit
fe6dcdf682
@ -1,9 +1,16 @@
|
||||
<small class="text-muted">
|
||||
<ng-container i18n>Market data provided by</ng-container> <ng-container
|
||||
*ngFor="let dataProviderInfo of dataProviderInfos; let last = last"
|
||||
><a target="_blank" [href]="dataProviderInfo.url">{{
|
||||
<ng-container i18n>Market data provided by</ng-container>
|
||||
@for (
|
||||
dataProviderInfo of dataProviderInfos;
|
||||
track dataProviderInfo;
|
||||
let last = $last
|
||||
) {
|
||||
<a target="_blank" [href]="dataProviderInfo.url">{{
|
||||
dataProviderInfo.name
|
||||
}}</a
|
||||
><ng-container *ngIf="!last">, </ng-container></ng-container
|
||||
>.
|
||||
}}</a>
|
||||
@if (!last) {
|
||||
,
|
||||
}
|
||||
}
|
||||
.
|
||||
</small>
|
||||
|
Loading…
Reference in new issue