Skip to content
This repository has been archived by the owner on Apr 15, 2019. It is now read-only.

Commit

Permalink
Fix Rank in Forging
Browse files Browse the repository at this point in the history
  • Loading branch information
slaweet committed Aug 21, 2017
1 parent 2c3d897 commit 9247adf
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/forging/delegateStats.js
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,8 @@ const DelegateStats = props => (
<div className={style.circularProgressTitle}> {cardItem.label} </div>
<CircularProgressbar
percentage={cardItem.percentageTransform(props.delegate[cardItem.key])}
textForPercentage={cardItem.textForPercentage.bind(props.delegate[cardItem.key])}/>
textForPercentage={
cardItem.textForPercentage.bind(null, props.delegate[cardItem.key])}/>
</div>
</div>
</CardText>
Expand Down

0 comments on commit 9247adf

Please sign in to comment.