aboutsummaryrefslogtreecommitdiffstats
path: root/ui
diff options
context:
space:
mode:
authorAlexander Tseung <alextsg@gmail.com>2018-04-06 01:11:09 +0800
committerAlexander Tseung <alextsg@gmail.com>2018-04-06 01:11:09 +0800
commit82af778e6251879b3296136c44028d2c65f9d170 (patch)
treef7f944e9e21159eff843186190b65876cc6fae68 /ui
parent9d7e49fc3b26db21032f0e444ce6c507e74f00c1 (diff)
downloadtangerine-wallet-browser-82af778e6251879b3296136c44028d2c65f9d170.tar
tangerine-wallet-browser-82af778e6251879b3296136c44028d2c65f9d170.tar.gz
tangerine-wallet-browser-82af778e6251879b3296136c44028d2c65f9d170.tar.bz2
tangerine-wallet-browser-82af778e6251879b3296136c44028d2c65f9d170.tar.lz
tangerine-wallet-browser-82af778e6251879b3296136c44028d2c65f9d170.tar.xz
tangerine-wallet-browser-82af778e6251879b3296136c44028d2c65f9d170.tar.zst
tangerine-wallet-browser-82af778e6251879b3296136c44028d2c65f9d170.zip
Revert "commit"
This reverts commit fa8500e09ad599837f6ad1b2dfc3530195a03b33.
Diffstat (limited to 'ui')
-rw-r--r--ui/app/components/pending-tx/confirm-send-ether.js3
1 files changed, 2 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 a9beeacbb..afd459415 100644
--- a/ui/app/components/pending-tx/confirm-send-ether.js
+++ b/ui/app/components/pending-tx/confirm-send-ether.js
@@ -283,6 +283,7 @@ ConfirmSendEther.prototype.editTransaction = function (txMeta) {
ConfirmSendEther.prototype.render = function () {
const {
+ editTransaction,
currentCurrency,
clearSend,
conversionRate,
@@ -338,7 +339,7 @@ ConfirmSendEther.prototype.render = function () {
h('.page-container__header', [
h('.page-container__header-row', [
h('span.page-container__back-button', {
- onClick: () => this.editTransaction(txMeta),
+ onClick: () => editTransaction(txMeta),
style: {
visibility: !txMeta.lastGasPrice ? 'initial' : 'hidden',
},