Switch group score table columns

This commit is contained in:
Thor77 2019-11-09 14:51:50 +01:00
parent dcd2af03c7
commit 63414a0507
1 changed files with 1 additions and 1 deletions

View File

@ -94,7 +94,7 @@ function GroupScoresTableRow(props) {
return (<tr>
<td>{props.score.team.name}</td>
<td>{props.score.group_points}</td>
<td>{props.score.received_points}</td>
<td>{props.score.scored_points}</td>
<td>{props.score.received_points}</td>
</tr>);
}