Angular でチュートリアルを行っていますが、次の行で「改行またはセミコロンが必要です」というエラーが発生します。
<tr *ngFor='#product of products'>
コードは正常に実行されます。Webstorm にエラーを無視させるにはどうすればよいですか? エラーのあるテンプレートの全文は次のとおりです。
<div class="panel panel-primary">
<div class="page-header">{{pageTitle}}</div>
<div class="panel-body">
<div class="row">
<div class="col-md-2">Filter By:</div>
<div class="col-md-4"><input type="text"/> </div>
</div>
<div class="row">
<div class="col-md-6"><h3>Filtered by:</h3></div>
</div>
</div>
<div class="table-responsive">
<table class="table" *ngIf="products && products.length">
<thead>
<tr>
<th><button class="btn btn-primary">Show Image</button> </th>
<th>Product</th>
<th>Code</th>
<th>Available</th>
<th>Price</th>
<th>Rating</th>
</tr>
</thead>
<tbody>
<tr *ngFor='#product of products'>
<td></td>
<td>{{product.productName}}</td>
<td>{{product.productCode}}</td>
<td>{{product.releaseDate}}</td>
<td>{{product.price}}</td>
<td>{{product.starRating}}</td>
</tr>
</tbody>
</table>
</div>
</div>