I`m getting an endless loop when I try to bind a async function like this:
<tr *ngFor="let i of items">
<td>{{myAsyncFunc(i) | async}}</td>
</tr>
this is the function:
private myAsyncFunc(i: string): Promise<string> {
return Promise.resolve("some");
}
I'm doing something wrong? Or this is a bug?