Merge pull request #2552 from poanetwork/ab-remove-brackets-for-token-holders

remove brackets for token holders percentage
pull/2562/head
Victor Baranov 5 years ago committed by GitHub
commit 850e70e90f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      CHANGELOG.md
  2. 2
      apps/block_scout_web/lib/block_scout_web/templates/tokens/holder/_token_balances.html.eex

@ -37,6 +37,7 @@
### Chore
- [#2554](https://github.com/poanetwork/blockscout/pull/2554) - remove extra slash for endpoint url in docs
- [#2552](https://github.com/poanetwork/blockscout/pull/2552) - remove brackets for token holders percentage
- [#2507](https://github.com/poanetwork/blockscout/pull/2507) - update minor version of ecto, ex_machina, phoenix_live_reload
- [#2516](https://github.com/poanetwork/blockscout/pull/2516) - update absinthe plug from fork
- [#2473](https://github.com/poanetwork/blockscout/pull/2473) - get rid of cldr warnings

@ -11,7 +11,7 @@
</span>
<%= if show_total_supply_percentage?(@token.total_supply) do %>
(<%= total_supply_percentage(@token_balance.value, @token.total_supply) %>)
<%= total_supply_percentage(@token_balance.value, @token.total_supply) %>
<% end %>
</span>
</div>

Loading…
Cancel
Save