diff options
Fix outdated transitions
Fixes #151
- Cancelling or completing a tx now goes back to account detail view.
- Restoring a vault now does not select an unloaded account, shows account list.
- Account list now never selects an item only uses the cells as buttons.
Diffstat (limited to 'ui/app/accounts.js')
-rw-r--r-- | ui/app/accounts.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/accounts.js b/ui/app/accounts.js index d35e80678..0cc72878c 100644 --- a/ui/app/accounts.js +++ b/ui/app/accounts.js @@ -91,7 +91,7 @@ AccountsScreen.prototype.render = function() { var componentState = extend(actions, { identity: identity, account: account, - isSelected: isSelected, + isSelected: false, isFauceting: isFauceting, }) return h(AccountPanel, componentState) |