Skip to content
Snippets Groups Projects
Commit 64a20c84 authored by James Calfee's avatar James Calfee Committed by Valentine Zavgorodnev
Browse files

Add formatting to saving account balance. close #462 (#463)

parent da5068c1
No related branches found
No related tags found
No related merge requests found
......@@ -137,6 +137,8 @@ class UserWallet extends React.Component {
const steem_balance_str = numberWithCommas(balance_steem.toFixed(3)) // formatDecimal(balance_steem, 3)
const power_balance_str = numberWithCommas(vesting_steem) // formatDecimal(vesting_steem, 3)
const sbd_balance_str = numberWithCommas('$' + sbd_balance.toFixed(3)) // formatDecimal(account.sbd_balance, 3)
const savings_balance_str = numberWithCommas('$' + saving_balance_steem.toFixed(3))
const savings_sbd_balance_str = numberWithCommas('$' + sbd_balance_savings.toFixed(3))
const savings_menu = [
{ value: 'Withdraw Steem', link: '#', onClick: showTransfer.bind( this, 'STEEM', 'Savings Withdraw' ) },
......@@ -191,12 +193,12 @@ class UserWallet extends React.Component {
</div>
<div className="column small-12 medium-4">
{isMyAccount ?
<FoundationDropdownMenu dropdownPosition="bottom" dropdownAlignment="right" label={savings_balance} menu={savings_menu} />
: savings_balance}
<FoundationDropdownMenu dropdownPosition="bottom" dropdownAlignment="right" label={savings_balance_str} menu={savings_menu} />
: savings_balance_str}
<br />
{isMyAccount ?
<FoundationDropdownMenu dropdownPosition="bottom" dropdownAlignment="right" label={savings_sbd_balance} menu={savings_sbd_menu} />
: savings_sbd_balance}
<FoundationDropdownMenu dropdownPosition="bottom" dropdownAlignment="right" label={savings_sbd_balance_str} menu={savings_sbd_menu} />
: savings_sbd_balance_str}
</div>
</div>
<div className="row">
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment