Skip to content

Commit

Permalink
fix comma
Browse files Browse the repository at this point in the history
  • Loading branch information
vercah committed Nov 12, 2024
1 parent f297eaa commit 0557250
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/Components/TeamResults/teamResults.latte
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
}
{foreach $members as $key => $member}
{varType App\Models\Downloader\TeamMemberModel $member}
{$member->name}{if !$iterator->isLast()},{/if}
{$member->name|trim}{if !$iterator->isLast()},{/if}
{do $inSchool++}
{if $iterator->isLast() || (!is_null($members[$key + 1]) && isset($member->school) && isset($members[$key + 1]->school) && $member->school['schoolId'] != $members[$key + 1]->school['schoolId'])}
<span class="text-muted"> ({if $inSchool > 1}{$inSchool}&nbsp;&times;&nbsp;{/if}{$member->school['nameAbbrev']??''}{if isset($member->school) && $member->school['countryISO'] !== 'ZZ'} <span
Expand Down

0 comments on commit 0557250

Please sign in to comment.