diff --git a/js/components/Match.js b/js/components/Match.js
index d9f3211..7396122 100644
--- a/js/components/Match.js
+++ b/js/components/Match.js
@@ -118,13 +118,21 @@ export class Match extends React.Component {
smallMessage = 'Spiel kann gestartet werden';
break;
}
+
+ const groupInformation = this.state.match.group ?
+
Gr. {this.state.match.group.number}
:
+ '';
+
return (
-
{this.state.match.position}
+
+ {groupInformation}
+ Sp. {this.state.match.position}
+
{smallMessage}
diff --git a/js/redux/tournamentApi.js b/js/redux/tournamentApi.js
index 50bb15c..a216d1d 100644
--- a/js/redux/tournamentApi.js
+++ b/js/redux/tournamentApi.js
@@ -110,7 +110,8 @@ function convertMatch(apiMatch, allowUndecided) {
state: apiMatch.state,
allowUndecided: allowUndecided,
winnerTeamId: apiMatch.winner === null ? null : apiMatch.winner.id,
- position: apiMatch.position + 1
+ position: apiMatch.position + 1,
+ group: apiMatch.group ? {id: apiMatch.group.id, number: apiMatch.group.number} : null
};
if (apiMatch.match_scores.length === 2) {