Skip to content

Commit

Permalink
fix: get actual number of cps teams into gov page
Browse files Browse the repository at this point in the history
  • Loading branch information
robcxyz committed Aug 2, 2022
1 parent 8c6f130 commit a64b166
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/GovernancePage/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -416,6 +416,7 @@ class TableRow extends Component {
logo,
status,
sponsored_cps_grants,
cps_governance,
bonded,
power

Expand All @@ -441,7 +442,7 @@ class TableRow extends Component {
</li>
</ul>
</td>
<td>{sponsored_cps_grants !== null ?'✓':'-'}</td>
<td>{cps_governance ?'✓':'-'}</td>
<td>{sponsored_cps_grants ? sponsored_cps_grants : 0}</td>
<td><span>{ productivity !== "None" ? productivity : "0.00%"}</span><em>{numberWithCommas(Number(validated_blocks))} / {numberWithCommas(Number(total_blocks))}</em></td>
{!blackChecked && <td className={"bonded"}><span>{numberWithCommas(Number(bonded / Math.pow(10, 18)).toFixed())}</span></td>}
Expand Down

0 comments on commit a64b166

Please sign in to comment.