diff options
author | Dan Finlay <dan@danfinlay.com> | 2016-04-26 04:49:46 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2016-04-26 04:49:46 +0800 |
commit | 4c46cbc99cbed0de560b3c2ba8fe502c1c5343a8 (patch) | |
tree | b2e9f73d9388fb51ce9def53680f42b1f980d364 /ui/app/reducers | |
parent | 44c68eb23c8fe510438fa44c26a5acd99bbe19e8 (diff) | |
download | tangerine-wallet-browser-4c46cbc99cbed0de560b3c2ba8fe502c1c5343a8.tar tangerine-wallet-browser-4c46cbc99cbed0de560b3c2ba8fe502c1c5343a8.tar.gz tangerine-wallet-browser-4c46cbc99cbed0de560b3c2ba8fe502c1c5343a8.tar.bz2 tangerine-wallet-browser-4c46cbc99cbed0de560b3c2ba8fe502c1c5343a8.tar.lz tangerine-wallet-browser-4c46cbc99cbed0de560b3c2ba8fe502c1c5343a8.tar.xz tangerine-wallet-browser-4c46cbc99cbed0de560b3c2ba8fe502c1c5343a8.tar.zst tangerine-wallet-browser-4c46cbc99cbed0de560b3c2ba8fe502c1c5343a8.zip |
Fixed some loading bugs
Diffstat (limited to 'ui/app/reducers')
-rw-r--r-- | ui/app/reducers/app.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ui/app/reducers/app.js b/ui/app/reducers/app.js index 46bc3c36d..131b434e9 100644 --- a/ui/app/reducers/app.js +++ b/ui/app/reducers/app.js @@ -139,13 +139,11 @@ function reduceApp(state, action) { transForward: false, }) - case actions.SHOW_ACCOUNT_DETAIL: return extend(appState, { - isLoading: account ? false : true, currentView: { name: 'accountDetail', - context: account, + context: action.value || account, }, accountDetail: { accountExport: 'none', |