Merge pull request #3009 from poanetwork/vb-fix-redirect-to-checksummed-address

Fix broken export to CSV
pull/3010/head
Victor Baranov 5 years ago committed by GitHub
commit f704982c9a
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/address_transaction/index.html.eex
  3. 2
      apps/block_scout_web/lib/block_scout_web/views/address_transaction_view.ex
  4. 6
      apps/block_scout_web/priv/gettext/default.pot
  5. 6
      apps/block_scout_web/priv/gettext/en/LC_MESSAGES/default.po

@ -5,6 +5,7 @@
- [#2834](https://github.com/poanetwork/blockscout/pull/2834) - always redirect to checksummed hash
### Fixes
- [#3009](https://github.com/poanetwork/blockscout/pull/3009) - Fix broken export to CSV
- [#3007](https://github.com/poanetwork/blockscout/pull/3007) - Fix copy UTF8 tx input action
- [#2996](https://github.com/poanetwork/blockscout/pull/2996) - Fix awesomplete lib loading in Firefox
- [#2993](https://github.com/poanetwork/blockscout/pull/2993) - Fix path definition for contract verification endpoint

@ -71,7 +71,7 @@
<div class="transaction-bottom-panel">
<div class="download-all-transactions">
Download <a class="download-all-transactions-link" href=<%= address_transaction_path(@conn, :transactions_csv, %{"address_id" => to_string(@address.hash)}) %>><%= gettext("CSV") %></span>
Download <a class="download-all-transactions-link" href=<%= address_transaction_path(@conn, :transactions_csv, %{"address_id" => Address.checksum(@address.hash)}) %>><%= gettext("CSV") %></span>
<svg xmlns="http://www.w3.org/2000/svg" width="14" height="16">
<path fill="#333333" fill-rule="evenodd" d="M13 16H1c-.999 0-1-1-1-1V1s-.004-1 1-1h6l7 7v8s-.032 1-1 1zm-1-8c0-.99-1-1-1-1H8s-1 .001-1-1V3c0-.999-1-1-1-1H2v12h10V8z"/>
</svg>

@ -1,6 +1,8 @@
defmodule BlockScoutWeb.AddressTransactionView do
use BlockScoutWeb, :view
alias Explorer.Chain.{Address}
def format_current_filter(filter) do
case filter do
"to" -> gettext("To")

@ -140,7 +140,7 @@ msgstr ""
#: lib/block_scout_web/templates/layout/_network_selector.html.eex:21
#: lib/block_scout_web/views/address_internal_transaction_view.ex:8
#: lib/block_scout_web/views/address_token_transfer_view.ex:8
#: lib/block_scout_web/views/address_transaction_view.ex:8
#: lib/block_scout_web/views/address_transaction_view.ex:10
msgid "All"
msgstr ""
@ -712,7 +712,7 @@ msgstr ""
#: lib/block_scout_web/templates/address_transaction/index.html.eex:40
#: lib/block_scout_web/views/address_internal_transaction_view.ex:7
#: lib/block_scout_web/views/address_token_transfer_view.ex:7
#: lib/block_scout_web/views/address_transaction_view.ex:7
#: lib/block_scout_web/views/address_transaction_view.ex:9
msgid "From"
msgstr ""
@ -855,7 +855,7 @@ msgstr ""
#: lib/block_scout_web/templates/address_transaction/index.html.eex:29
#: lib/block_scout_web/views/address_internal_transaction_view.ex:6
#: lib/block_scout_web/views/address_token_transfer_view.ex:6
#: lib/block_scout_web/views/address_transaction_view.ex:6
#: lib/block_scout_web/views/address_transaction_view.ex:8
msgid "To"
msgstr ""

@ -140,7 +140,7 @@ msgstr ""
#: lib/block_scout_web/templates/layout/_network_selector.html.eex:21
#: lib/block_scout_web/views/address_internal_transaction_view.ex:8
#: lib/block_scout_web/views/address_token_transfer_view.ex:8
#: lib/block_scout_web/views/address_transaction_view.ex:8
#: lib/block_scout_web/views/address_transaction_view.ex:10
msgid "All"
msgstr ""
@ -712,7 +712,7 @@ msgstr ""
#: lib/block_scout_web/templates/address_transaction/index.html.eex:40
#: lib/block_scout_web/views/address_internal_transaction_view.ex:7
#: lib/block_scout_web/views/address_token_transfer_view.ex:7
#: lib/block_scout_web/views/address_transaction_view.ex:7
#: lib/block_scout_web/views/address_transaction_view.ex:9
msgid "From"
msgstr ""
@ -855,7 +855,7 @@ msgstr ""
#: lib/block_scout_web/templates/address_transaction/index.html.eex:29
#: lib/block_scout_web/views/address_internal_transaction_view.ex:6
#: lib/block_scout_web/views/address_token_transfer_view.ex:6
#: lib/block_scout_web/views/address_transaction_view.ex:6
#: lib/block_scout_web/views/address_transaction_view.ex:8
msgid "To"
msgstr ""

Loading…
Cancel
Save