Skip to content

Commit

Permalink
Don't set the empty string as we display it on the scoreboard
Browse files Browse the repository at this point in the history
We state we fallback but would pick the empty string now,
  • Loading branch information
vmcj committed May 10, 2024
1 parent f4095e6 commit 8223341
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions webapp/src/Service/ImportExportService.php
Original file line number Diff line number Diff line change
Expand Up @@ -886,8 +886,8 @@ public function importTeamsJson(array $data, ?string &$message = null, ?array &$
'icpcid' => $team['icpc_id'] ?? null,
'label' => $team['label'] ?? null,
'categoryid' => $team['group_ids'][0] ?? null,
'name' => $team['name'] ?? '',
'display_name' => $team['display_name'] ?? '',
'name' => $team['name'] ?? null,
'display_name' => $team['display_name'] ?? null,
'publicdescription' => $team['public_description'] ?? $team['members'] ?? '',
'location' => $team['location']['description'] ?? null,
],
Expand Down

0 comments on commit 8223341

Please sign in to comment.