feat(mannschaften): show rise/fall arrow in table rank column
Some checks failed
Code Analysis and Production Deploy / deploy-production (push) Has been cancelled
Code Analysis and Production Deploy / deploy-test (push) Has been cancelled
Code Analysis and Production Deploy / analyze (push) Has been cancelled

This commit is contained in:
Torsten Schulz (local)
2026-05-21 00:07:18 +02:00
parent fd83b18642
commit 1c9dff0932

View File

@@ -259,7 +259,13 @@
:class="isCurrentTeamRow(row) ? 'bg-primary-50' : 'bg-white'" :class="isCurrentTeamRow(row) ? 'bg-primary-50' : 'bg-white'"
> >
<td class="px-4 py-3 whitespace-nowrap text-sm text-gray-900"> <td class="px-4 py-3 whitespace-nowrap text-sm text-gray-900">
{{ row.table_rank ?? '-' }} {{ row.table_rank ?? '-' }}<span
v-if="row.rise_fall_state === 'rise'"
class="ml-1 text-green-600"
></span><span
v-else-if="row.rise_fall_state === 'fall'"
class="ml-1 text-red-600"
></span>
</td> </td>
<td class="px-4 py-3 whitespace-nowrap text-sm text-gray-900 font-medium"> <td class="px-4 py-3 whitespace-nowrap text-sm text-gray-900 font-medium">
{{ row.team_name || '-' }} {{ row.team_name || '-' }}