<div class="panel-body">
{{ (currentPlatformProfile | async)?.length }} <!-- line 1 -->
<table>
<tr *ngFor="let platform of {{(currentPlatformProfile | async)}}">
<td>{{platform.infoPlatform}}</td>
<td>{{platform.infoGameId}}</td>
<td>{{platform.infoChannel}}</td>
</tr>
</table>
</div>
my html code is in the snippet, in fact line 1 work correctly, but in the ngFor it failed with
How could I make use of this array?
Unhandled Promise rejection: Template parse errors: TypeError: Cannot read property 'toUpperCase' of undefined (" {{ (currentPlatformProfile | async) }} ]*ngFor="let platform of {{(currentPlatformProfile | async)}}"> {{plat"): ng:///AppModule/ProfilecreateComponent.html@130:24 Can't bind to '*ngFor' since it isn't a known property of 'tr'.
Blockquote