Skip to content

Commit

Permalink
Add space in front of 'coin' and 'coin days' in AccountVesting
Browse files Browse the repository at this point in the history
  • Loading branch information
svk31 committed Oct 30, 2017
1 parent d9004c2 commit 3a8db58
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions app/components/Account/AccountVesting.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,17 +58,17 @@ class VestingBalance extends React.Component {
<tr>
<td><Translate content="account.member.earned"/></td>
<td>{utils.format_number(utils.get_asset_amount(earned / secondsPerDay, cvbAsset), 0)}
<Translate content="account.member.coindays"/></td>
&nbsp;<Translate content="account.member.coindays"/></td>
</tr>
<tr>
<td><Translate content="account.member.required"/></td>
<td>{utils.format_number(utils.get_asset_amount(vb.balance.amount * vestingPeriod / secondsPerDay, cvbAsset), 0)}
<Translate content="account.member.coindays"/></td>
&nbsp;<Translate content="account.member.coindays"/></td>
</tr>
<tr>
<td><Translate content="account.member.remaining"/></td>
<td>{utils.format_number(vestingPeriod * (1 - availablePercent) / secondsPerDay || 0, 2)}
days
&nbsp;days
</td>
</tr>
<tr>
Expand Down

0 comments on commit 3a8db58

Please sign in to comment.