mirror of
https://github.com/zeldaret/website.git
synced 2026-09-26 05:31:32 -04:00
fix missing tr tag
this improves accessibility through better screen reader support
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user