Remove duplicate tournament name
This commit is contained in:
parent
38ac3c29b0
commit
19eb3f531d
|
|
@ -37,7 +37,6 @@ class StatisticsTournamentPage extends React.Component {
|
||||||
<TurniereNavigation/>
|
<TurniereNavigation/>
|
||||||
<TournamentBigImage {...tournamentStatistics}/>
|
<TournamentBigImage {...tournamentStatistics}/>
|
||||||
<TournamentStatusBar>
|
<TournamentStatusBar>
|
||||||
<NavbarBrand>{tournamentStatistics.name}</NavbarBrand>
|
|
||||||
<ButtonGroup className='me-auto'>
|
<ButtonGroup className='me-auto'>
|
||||||
<EditButton tournamentId={tournamentStatistics.id}
|
<EditButton tournamentId={tournamentStatistics.id}
|
||||||
isOwner={this.props.username === tournamentStatistics.ownerUsername}
|
isOwner={this.props.username === tournamentStatistics.ownerUsername}
|
||||||
|
|
|
||||||
|
|
@ -38,7 +38,6 @@ class PrivateTournamentPage extends React.Component {
|
||||||
|
|
||||||
function StatusBar(props) {
|
function StatusBar(props) {
|
||||||
return (<TournamentStatusBar>
|
return (<TournamentStatusBar>
|
||||||
<NavbarBrand>{props.tournament.name}</NavbarBrand>
|
|
||||||
<ButtonGroup className='me-auto'>
|
<ButtonGroup className='me-auto'>
|
||||||
<EditButton tournamentId={props.tournament.id} isOwner={props.isOwner} isSignedIn={props.isSignedIn}/>
|
<EditButton tournamentId={props.tournament.id} isOwner={props.isOwner} isSignedIn={props.isSignedIn}/>
|
||||||
<StatisticsButton tournamentId={props.tournament.id}/>
|
<StatisticsButton tournamentId={props.tournament.id}/>
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue