aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/pending-tx/confirm-send-token.js
diff options
context:
space:
mode:
authorAlexander Tseung <alextsg@gmail.com>2018-04-06 17:04:39 +0800
committerAlexander Tseung <alextsg@gmail.com>2018-04-07 02:25:05 +0800
commit1e6f062bb6bbc39d6ab21a351fdb0d3bcab4d7d5 (patch)
treeabb178d4699947d32f7249d48976e2558aab554a /ui/app/components/pending-tx/confirm-send-token.js
parent4c15c0d3baa15638d75aa5e1a8f336e515d35f95 (diff)
downloadtangerine-wallet-browser-1e6f062bb6bbc39d6ab21a351fdb0d3bcab4d7d5.tar.gz
tangerine-wallet-browser-1e6f062bb6bbc39d6ab21a351fdb0d3bcab4d7d5.tar.zst
tangerine-wallet-browser-1e6f062bb6bbc39d6ab21a351fdb0d3bcab4d7d5.zip
Fix integration tests
Diffstat (limited to 'ui/app/components/pending-tx/confirm-send-token.js')
-rw-r--r--ui/app/components/pending-tx/confirm-send-token.js4
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/app/components/pending-tx/confirm-send-token.js b/ui/app/components/pending-tx/confirm-send-token.js
index 5e6d0747d..6942f9b51 100644
--- a/ui/app/components/pending-tx/confirm-send-token.js
+++ b/ui/app/components/pending-tx/confirm-send-token.js
@@ -524,7 +524,9 @@ ConfirmSendToken.prototype.render = function () {
}, this.context.t('cancel')),
// Accept Button
- h('button.btn-confirm.page-container__footer-button.allcaps', [this.context.t('confirm')]),
+ h('button.btn-confirm.page-container__footer-button.allcaps', {
+ onClick: event => this.onSubmit(event),
+ }, [this.context.t('confirm')]),
]),
]),
]),