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