feat(mannschaften): show rise/fall arrow in table rank column
This commit is contained in:
@@ -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 || '-' }}
|
||||||
|
|||||||
Reference in New Issue
Block a user