Skip to content

Commit b3d0090

Browse files
committed
correct template
1 parent b6a93d9 commit b3d0090

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

CHANGELOG.md

+2
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
## 2.1
44

5+
- Fix address token charts
6+
- Fix transaction display (minted token, transfer)
57
- Fix decimals for NEP5 that were not returned correctly in API
68
- Time displayed in the front-end should respect user timezone
79
- Fix Attribute typo

apps/neoscan_web/lib/neoscan_web/templates/shared/transaction_panel_entries.html.eex

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<div class="individual-transaction">
33
<%= unless entry.address_hash == <<0>> do %>
44
<a href='<%= address_path(@conn, :index, render_address_hash(entry.address_hash))%>' alt="View wallet address" title="View wallet address" class="large-blue-link wallet-address"><span class="fa fa-key"></span><%= render_address_hash(entry.address_hash) %></a>
5-
<%= end %>
5+
<% end %>
66
<p class="neo-amount large-blue-link"><span class="fa <%= render_asset_style(entry.asset.name) %>"></span><%= render_balance(entry.value, entry.asset.precision) %> <%= entry.asset.name %></p>
77
</div>
88
<% end %>

0 commit comments

Comments
 (0)