feat(match-service): enhance team identification logic and update league table display
All checks were successful
Deploy tt-tagebuch / deploy (push) Successful in 57s

This commit is contained in:
Torsten Schulz (local)
2026-09-11 14:45:13 +02:00
parent cc6a62a122
commit acbb6c56ee
2 changed files with 24 additions and 1 deletions

View File

@@ -251,7 +251,7 @@
</tr>
</thead>
<tbody>
<tr v-for="(team, index) in leagueTable" :key="team.teamId" :class="{ 'our-team': isOurTeam(team.teamName) }">
<tr v-for="(team, index) in leagueTable" :key="team.teamId" :class="{ 'our-team': team.isOwnTeam || isOurTeam(team.teamName) }">
<td>{{ index + 1 }}</td>
<td>{{ team.teamName }}</td>
<td>{{ team.matchPoints }}</td>