diff options
author | Alexander Tseung <alextsg@gmail.com> | 2018-02-02 06:13:08 +0800 |
---|---|---|
committer | Alexander Tseung <alextsg@gmail.com> | 2018-02-02 06:13:08 +0800 |
commit | 2fd9e58e612e9fe341c9107a677238a566e3c1b8 (patch) | |
tree | e94a378e218d002ce9fd29ad2e5af7daf3fc448f /ui/app/components/pending-tx | |
parent | f38675c9ac99d966b39e3faccd2bf8d7facea9dc (diff) | |
download | tangerine-wallet-browser-2fd9e58e612e9fe341c9107a677238a566e3c1b8.tar tangerine-wallet-browser-2fd9e58e612e9fe341c9107a677238a566e3c1b8.tar.gz tangerine-wallet-browser-2fd9e58e612e9fe341c9107a677238a566e3c1b8.tar.bz2 tangerine-wallet-browser-2fd9e58e612e9fe341c9107a677238a566e3c1b8.tar.lz tangerine-wallet-browser-2fd9e58e612e9fe341c9107a677238a566e3c1b8.tar.xz tangerine-wallet-browser-2fd9e58e612e9fe341c9107a677238a566e3c1b8.tar.zst tangerine-wallet-browser-2fd9e58e612e9fe341c9107a677238a566e3c1b8.zip |
Fix lint errors
Diffstat (limited to 'ui/app/components/pending-tx')
-rw-r--r-- | ui/app/components/pending-tx/confirm-send-ether.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/components/pending-tx/confirm-send-ether.js b/ui/app/components/pending-tx/confirm-send-ether.js index e63415194..a2d6adcd0 100644 --- a/ui/app/components/pending-tx/confirm-send-ether.js +++ b/ui/app/components/pending-tx/confirm-send-ether.js @@ -232,7 +232,7 @@ ConfirmSendEther.prototype.render = function () { h('div.confirm-screen-wrapper.flex-column.flex-grow', [ h('h3.flex-center.confirm-screen-header', [ h('button.btn-clear.confirm-screen-back-button', { - onClick: () => editTransaction(txMeta), + onClick: () => this.editTransaction(txMeta), }, 'EDIT'), h('div.confirm-screen-title', 'Confirm Transaction'), h('div.confirm-screen-header-tip'), |