diff options
author | Dan <danjm.com@gmail.com> | 2017-08-30 11:16:30 +0800 |
---|---|---|
committer | Chi Kei Chan <chikeichan@gmail.com> | 2017-09-08 01:25:56 +0800 |
commit | 6d3b3d42034c88475cd90172ddd97b95f04df60e (patch) | |
tree | c4ce6e5d95fa237d7d5545253b25ec371b26b24a /ui/app/components/buy-button-subview.js | |
parent | aa60944e30b7d1d9680b5ca53e8b61a8edb47904 (diff) | |
download | tangerine-wallet-browser-6d3b3d42034c88475cd90172ddd97b95f04df60e.tar.gz tangerine-wallet-browser-6d3b3d42034c88475cd90172ddd97b95f04df60e.tar.zst tangerine-wallet-browser-6d3b3d42034c88475cd90172ddd97b95f04df60e.zip |
Show confirm transaction screen when clicking a pending transaction in the list.
Diffstat (limited to 'ui/app/components/buy-button-subview.js')
-rw-r--r-- | ui/app/components/buy-button-subview.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/components/buy-button-subview.js b/ui/app/components/buy-button-subview.js index 15281171c..6cf6e9eb9 100644 --- a/ui/app/components/buy-button-subview.js +++ b/ui/app/components/buy-button-subview.js @@ -245,7 +245,7 @@ BuyButtonSubview.prototype.navigateTo = function (url) { BuyButtonSubview.prototype.backButtonContext = function () { if (this.props.context === 'confTx') { - this.props.dispatch(actions.showConfTxPage(false)) + this.props.dispatch(actions.showConfTxPage({transForward: false})) } else { this.props.dispatch(actions.goHome()) } |