Add ids to schedule to verify sort

This commit is contained in:
Peter 2025-06-30 09:48:06 -05:00
parent e12e207e23
commit 4f939e5f08

View File

@ -24,8 +24,8 @@
<th style="width: 3rem">Home</th>
</tr>
</thead>
<tbody id="matchup-1">
<tr v-for="game in matchup" :key="game.id">
<tbody :id="`matchup-${index}`">
<tr v-for="game in matchup" :key="game.id" :id="`game-id-${game.id}`">
<td>
<RouterLink
:to="{ name: 'team', params: { seasonNumber: seasonNumber, teamAbbreviation: game.away_team.abbrev } }"