Use the actual group number for group titles
This commit is contained in:
parent
8185a7b4b5
commit
815065099b
|
|
@ -60,7 +60,7 @@ class Group extends Component {
|
||||||
return (<Col className='minw-25'>
|
return (<Col className='minw-25'>
|
||||||
<Card>
|
<Card>
|
||||||
<CardBody>
|
<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}>
|
<Collapse isOpen={this.props.showMatches}>
|
||||||
{this.state.matches.map((match => (
|
{this.state.matches.map((match => (
|
||||||
<Match match={match} isSignedIn={this.props.isSignedIn} isOwner={this.props.isOwner}
|
<Match match={match} isSignedIn={this.props.isSignedIn} isOwner={this.props.isOwner}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue