aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/reducers
diff options
context:
space:
mode:
authorDan <danjm.com@gmail.com>2017-08-30 11:16:30 +0800
committerChi Kei Chan <chikeichan@gmail.com>2017-09-08 01:25:56 +0800
commit6d3b3d42034c88475cd90172ddd97b95f04df60e (patch)
treec4ce6e5d95fa237d7d5545253b25ec371b26b24a /ui/app/reducers
parentaa60944e30b7d1d9680b5ca53e8b61a8edb47904 (diff)
downloadtangerine-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/reducers')
-rw-r--r--ui/app/reducers/app.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/reducers/app.js b/ui/app/reducers/app.js
index b2e5543ea..c55ba179f 100644
--- a/ui/app/reducers/app.js
+++ b/ui/app/reducers/app.js
@@ -360,7 +360,7 @@ function reduceApp (state, action) {
return extend(appState, {
currentView: {
name: 'confTx',
- context: 0,
+ context: action.id && indexForPending(state, action.id) || 0,
},
transForward: action.transForward,
warning: null,