diff options
author | Whymarrh Whitby <whymarrh.whitby@gmail.com> | 2018-09-09 07:26:02 +0800 |
---|---|---|
committer | Whymarrh Whitby <whymarrh.whitby@gmail.com> | 2018-09-09 07:26:02 +0800 |
commit | e39050f4fe1ff76e48e08cf91c244b66fe1c406e (patch) | |
tree | 7705200f33e7b00de4b67675e4a9f7e6a6ad51e3 /ui | |
parent | 9662f9b8b5cdb28e46dbbe1288966a75bb500b8d (diff) | |
download | tangerine-wallet-browser-e39050f4fe1ff76e48e08cf91c244b66fe1c406e.tar tangerine-wallet-browser-e39050f4fe1ff76e48e08cf91c244b66fe1c406e.tar.gz tangerine-wallet-browser-e39050f4fe1ff76e48e08cf91c244b66fe1c406e.tar.bz2 tangerine-wallet-browser-e39050f4fe1ff76e48e08cf91c244b66fe1c406e.tar.lz tangerine-wallet-browser-e39050f4fe1ff76e48e08cf91c244b66fe1c406e.tar.xz tangerine-wallet-browser-e39050f4fe1ff76e48e08cf91c244b66fe1c406e.tar.zst tangerine-wallet-browser-e39050f4fe1ff76e48e08cf91c244b66fe1c406e.zip |
Show failed tx txMeta.err in tooltips
Diffstat (limited to 'ui')
-rw-r--r-- | ui/app/components/transaction-list-item/transaction-list-item.component.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/components/transaction-list-item/transaction-list-item.component.js b/ui/app/components/transaction-list-item/transaction-list-item.component.js index 140763fba..75b41a477 100644 --- a/ui/app/components/transaction-list-item/transaction-list-item.component.js +++ b/ui/app/components/transaction-list-item/transaction-list-item.component.js @@ -134,7 +134,7 @@ export default class TransactionListItem extends PureComponent { title={( (transaction.err && transaction.err.rpc) ? transaction.err.rpc.message - : null + : transaction.err && transaction.err.message )} /> { this.renderPrimaryCurrency() } |