Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
C
condenser
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hive
condenser
Commits
64a20c84
Commit
64a20c84
authored
8 years ago
by
James Calfee
Committed by
Valentine Zavgorodnev
8 years ago
Browse files
Options
Downloads
Patches
Plain Diff
Add formatting to saving account balance. close #462 (#463)
parent
da5068c1
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
app/components/modules/UserWallet.jsx
+6
-4
6 additions, 4 deletions
app/components/modules/UserWallet.jsx
with
6 additions
and
4 deletions
app/components/modules/UserWallet.jsx
+
6
−
4
View file @
64a20c84
...
...
@@ -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"
>
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment