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 31, 2024
1 parent 6782afc commit 9974cec
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 @@ -984,8 +984,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 9974cec

Please sign in to comment.