Auditionadmin 68 #85

Merged
okorpheus merged 11 commits from auditionadmin-68 into master 2024-10-31 17:22:49 +00:00
1 changed files with 3 additions and 3 deletions
Showing only changes of commit f8d778dbcc - Show all commits

View File

@ -14,9 +14,9 @@
@if(! $entry->audition->hasFlag('seats_published')) @if(! $entry->audition->hasFlag('seats_published'))
<x-table.td colspan="3">Results not available</x-table.td> <x-table.td colspan="3">Results not available</x-table.td>
@else @else
<x-table.td> {{ $scores[$entry->id ][0] }}</x-table.td> <x-table.td> {{ $scores[$entry->id ][0] ?? '--' }}</x-table.td>
<x-table.td> {{ $ranks[$entry->id ] }}</x-table.td> <x-table.td> {{ $ranks[$entry->id ] ?? '--' }}</x-table.td>
<x-table.td> {{ $results[$entry->id ] }}</x-table.td> <x-table.td> {{ $results[$entry->id ] ?? '--' }}</x-table.td>
@endif @endif
</tr> </tr>
@endforeach @endforeach