Merge pull request #332 from magicmonty/issue_303

Fixes wrong cursor on settings page
This commit is contained in:
Yuya Ochiai
2016-10-08 16:07:58 +09:00
committed by GitHub

View File

@@ -388,9 +388,9 @@ var TeamListItem = React.createClass({
</p>
</div>
<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>
);