Use the actual group number for group titles

This commit is contained in:
Felix Hamme 2019-06-15 23:22:10 +02:00
parent 8185a7b4b5
commit 815065099b
1 changed files with 1 additions and 1 deletions

View File

@ -60,7 +60,7 @@ class Group extends Component {
return (<Col className='minw-25'>
<Card>
<CardBody>
<h3 className='custom-font'>Gruppe {this.state.id + 1}</h3>
<h3 className='custom-font'>Gruppe {this.state.number}</h3>
<Collapse isOpen={this.props.showMatches}>
{this.state.matches.map((match => (
<Match match={match} isSignedIn={this.props.isSignedIn} isOwner={this.props.isOwner}