Fixes wrong cursor on settings page

There were wrong href's (hre instead of href) on the links.
Fixes #303
This commit is contained in:
Martin Gondermann
2016-10-05 21:08:41 +02:00
parent 2bc57934f7
commit 704282dfff

View File

@@ -388,9 +388,9 @@ var TeamListItem = React.createClass({
</p> </p>
</div> </div>
<div className="pull-right"> <div className="pull-right">
<a hre="#" onClick={ this.handleTeamEditing }>Edit</a> <a href="#" onClick={ this.handleTeamEditing }>Edit</a>
{ ' - ' } { ' - ' }
<a hre="#" onClick={ this.handleTeamRemove }>Remove</a> <a href="#" onClick={ this.handleTeamRemove }>Remove</a>
</div> </div>
</div> </div>
); );