fix missing tr tag

this improves accessibility through better screen reader support
This commit is contained in:
Henny022p
2022-10-14 00:00:18 +02:00
parent 648be371a4
commit b63c19dd02
@@ -5,10 +5,12 @@
<hr>
<table>
<thead>
<th scope="col"></th>
<ng-container *ngFor="let series of meta.series; let j = index">
<th scope="col" [ngClass]="{nonmatching: j === 0, matching: j === 1}">{{ series.name }}</th>
</ng-container>
<tr>
<td></td>
<ng-container *ngFor="let series of meta.series; let j = index">
<th scope="col" [ngClass]="{nonmatching: j === 0, matching: j === 1}">{{ series.name }}</th>
</ng-container>
</tr>
</thead>
<tbody>
<tr>