From c1bc78a3b3c73e57148b0ce73aab73803b2243bb Mon Sep 17 00:00:00 2001 From: Thor77 Date: Sat, 9 Nov 2019 14:51:50 +0100 Subject: [PATCH] Switch group score table columns --- js/components/GroupStage.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/components/GroupStage.js b/js/components/GroupStage.js index 76f371e..4959cd1 100644 --- a/js/components/GroupStage.js +++ b/js/components/GroupStage.js @@ -94,7 +94,7 @@ function GroupScoresTableRow(props) { return ( {props.score.team.name} {props.score.group_points} - {props.score.received_points} {props.score.scored_points} + {props.score.received_points} ); }