Skip to content

Commit

Permalink
Fix team and affiliation page by setting public property
Browse files Browse the repository at this point in the history
  • Loading branch information
nickygerritsen committed Mar 1, 2025
1 parent 500d276 commit acbdc00
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions webapp/src/Controller/Jury/TeamAffiliationController.php
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,7 @@ public function viewAction(Request $request, ScoreboardService $scoreboardServic
'ajax' => true,
],
'maxWidth' => $this->config->get('team_column_width'),
'public' => false,
];

if ($currentContest = $this->dj->getCurrentContest()) {
Expand Down
1 change: 1 addition & 0 deletions webapp/src/Controller/Jury/TeamController.php
Original file line number Diff line number Diff line change
Expand Up @@ -247,6 +247,7 @@ public function viewAction(
'showFlags' => (bool)$this->config->get('show_flags'),
'showContest' => count($this->dj->getCurrentContests()) > 1,
'maxWidth' => $this->config->get("team_column_width"),
'public' => false,
];

$currentContest = $this->dj->getCurrentContest();
Expand Down

0 comments on commit acbdc00

Please sign in to comment.