fix: show message when loading new transactions instead of no tx msg
Signed-off-by: Andrey Shovkoplyas <motor4ik@gmail.com>
This commit is contained in:
parent
cc70a7e8da
commit
4f120d99f7
|
@ -113,7 +113,9 @@
|
|||
:render-fn #(render-transaction %)
|
||||
:empty-component
|
||||
[react/i18n-text {:style styles/empty-text
|
||||
:key :transactions-history-empty}]
|
||||
:key (if (or fetching-recent-history? fetching-more-history?)
|
||||
:transactions-history-loading
|
||||
:transactions-history-empty)}]
|
||||
:refreshing false}]
|
||||
(when (and (not fetching-recent-history?)
|
||||
(not all-fetched?))
|
||||
|
|
|
@ -957,6 +957,7 @@
|
|||
"type": "Type",
|
||||
"transactions-history": "Transaction history",
|
||||
"transactions-history-empty": "No transactions in your history yet",
|
||||
"transactions-history-loading": "Loading transaction history. This might take a while.",
|
||||
"transactions-sign": "Sign",
|
||||
"tribute-required-by-multiaccount": "{{multiaccount-name}} requires SNT to start a chat.",
|
||||
"tribute-state-paid": "Tribute paid",
|
||||
|
|
Loading…
Reference in New Issue