Skip to content

Commit

Permalink
Change URL parameter name to fix autowiring
Browse files Browse the repository at this point in the history
This has been fixed in #2865, but forgot to modify it in the template, which makes the entire analysis page failed to open.
  • Loading branch information
cubercsl authored Nov 26, 2024
1 parent 87cbe4e commit 3f49325
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/templates/jury/analysis/contest_overview.html.twig
Original file line number Diff line number Diff line change
Expand Up @@ -171,7 +171,7 @@ $(function() {
{% for t in teams %}
{% set id=t.teamid %}
<tr>
{% set link = path('analysis_team', {'teamid':id}) %}
{% set link = path('analysis_team', {'team':id}) %}
<td scope="row" style="text-align: right;"><a href="{{ link }}">{{ t | entityIdBadge('t') }}</a></td>
<td><a href="{{ link }}">{% if t.affiliation %}{{ t.affiliation.name }}{% else %}-{% endif %}</a></td>
<td class="truncate" style="max-width: 200px"><a href="{{ link }}">{{ t.effectiveName }}</a></td>
Expand Down

0 comments on commit 3f49325

Please sign in to comment.