Skip to content

Commit

Permalink
Fix: transfers view
Browse files Browse the repository at this point in the history
  • Loading branch information
aopoltorzhicky authored and m-kus committed Dec 16, 2020
1 parent fddb220 commit b21965b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/views/contract/TransfersTab.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,19 +31,19 @@
helpers
.round(
item.balance,
token.decimals ? token.decimals : 0
item.decimals ? item.decimals : 0
)
.toLocaleString(undefined, {
maximumFractionDigits: token.decimals
? token.decimals
maximumFractionDigits: item.decimals
? item.decimals
: 0,
})
}}</span
>&nbsp;
<span
class="caption text-uppercase font-weight-regular text--disabled"
>{{
token.symbol ? token.symbol : `tok_${item.token_id}`
item.symbol ? item.symbol : `tok_${item.token_id}`
}}</span
>
</v-list-item-subtitle>
Expand Down

0 comments on commit b21965b

Please sign in to comment.