aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorAlexander Tseung <alextsg@gmail.com>2018-04-06 00:53:24 +0800
committerAlexander Tseung <alextsg@gmail.com>2018-04-06 00:53:24 +0800
commitfa8500e09ad599837f6ad1b2dfc3530195a03b33 (patch)
treec30d3610f2aa398bc350a875d46c74d4bfb0cb6a /ui
parent254cf975a648e8caa2531aef98313fc698f6c8c3 (diff)
downloadtangerine-wallet-browser-fa8500e09ad599837f6ad1b2dfc3530195a03b33.tar
tangerine-wallet-browser-fa8500e09ad599837f6ad1b2dfc3530195a03b33.tar.gz
tangerine-wallet-browser-fa8500e09ad599837f6ad1b2dfc3530195a03b33.tar.bz2
tangerine-wallet-browser-fa8500e09ad599837f6ad1b2dfc3530195a03b33.tar.lz
tangerine-wallet-browser-fa8500e09ad599837f6ad1b2dfc3530195a03b33.tar.xz
tangerine-wallet-browser-fa8500e09ad599837f6ad1b2dfc3530195a03b33.tar.zst
tangerine-wallet-browser-fa8500e09ad599837f6ad1b2dfc3530195a03b33.zip
commit
Diffstat (limited to 'ui')
-rw-r--r--ui/app/components/pending-tx/confirm-send-ether.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/ui/app/components/pending-tx/confirm-send-ether.js b/ui/app/components/pending-tx/confirm-send-ether.js
index afd459415..a9beeacbb 100644
--- a/ui/app/components/pending-tx/confirm-send-ether.js
+++ b/ui/app/components/pending-tx/confirm-send-ether.js
@@ -283,7 +283,6 @@ ConfirmSendEther.prototype.editTransaction = function (txMeta) {
ConfirmSendEther.prototype.render = function () {
const {
- editTransaction,
currentCurrency,
clearSend,
conversionRate,
@@ -339,7 +338,7 @@ ConfirmSendEther.prototype.render = function () {
h('.page-container__header', [
h('.page-container__header-row', [
h('span.page-container__back-button', {
- onClick: () => editTransaction(txMeta),
+ onClick: () => this.editTransaction(txMeta),
style: {
visibility: !txMeta.lastGasPrice ? 'initial' : 'hidden',
},