diff options
author | Dan Finlay <dan@danfinlay.com> | 2017-05-22 05:18:23 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2017-05-22 05:18:23 +0800 |
commit | 0ef9e8b7094374b44d7a3bed6730d9d6815a17ec (patch) | |
tree | bc5db9f4b5a99c3b3bc981d136c71b65c6f56659 | |
parent | 3c90024564bee78fe0a9178d3772efaabe147ac5 (diff) | |
download | tangerine-wallet-browser-0ef9e8b7094374b44d7a3bed6730d9d6815a17ec.tar tangerine-wallet-browser-0ef9e8b7094374b44d7a3bed6730d9d6815a17ec.tar.gz tangerine-wallet-browser-0ef9e8b7094374b44d7a3bed6730d9d6815a17ec.tar.bz2 tangerine-wallet-browser-0ef9e8b7094374b44d7a3bed6730d9d6815a17ec.tar.lz tangerine-wallet-browser-0ef9e8b7094374b44d7a3bed6730d9d6815a17ec.tar.xz tangerine-wallet-browser-0ef9e8b7094374b44d7a3bed6730d9d6815a17ec.tar.zst tangerine-wallet-browser-0ef9e8b7094374b44d7a3bed6730d9d6815a17ec.zip |
Lint
-rw-r--r-- | ui/app/components/transaction-list-item-icon.js | 5 | ||||
-rw-r--r-- | ui/app/components/transaction-list-item.js | 4 |
2 files changed, 3 insertions, 6 deletions
diff --git a/ui/app/components/transaction-list-item-icon.js b/ui/app/components/transaction-list-item-icon.js index 03c6f6615..431054340 100644 --- a/ui/app/components/transaction-list-item-icon.js +++ b/ui/app/components/transaction-list-item-icon.js @@ -36,13 +36,12 @@ TransactionIcon.prototype.render = function () { return h(Tooltip, { title: 'Pending', position: 'bottom', - }, - [ + }, [ h('i.fa.fa-ellipsis-h', { style: { fontSize: '27px', }, - }) + }), ]) } diff --git a/ui/app/components/transaction-list-item.js b/ui/app/components/transaction-list-item.js index 18ee10578..e0612c7bf 100644 --- a/ui/app/components/transaction-list-item.js +++ b/ui/app/components/transaction-list-item.js @@ -75,8 +75,7 @@ TransactionListItem.prototype.render = function () { h(Tooltip, { title: 'Transaction Number', position: 'bottom', - }, - [ + }, [ h('span', { style: { display: 'flex', @@ -89,7 +88,6 @@ TransactionListItem.prototype.render = function () { }, nonce), ]), - h('.flex-column', {style: {width: '200px', overflow: 'hidden'}}, [ domainField(txParams), h('div', date), |