diff options
author | Kevin Serrano <kevgagser@gmail.com> | 2017-03-01 08:54:10 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-03-01 08:54:10 +0800 |
commit | f162a11585392df5e593018a02549f8b03018d22 (patch) | |
tree | c91dae0c308fb41a461fe85ce4cbeca5b49211df /ui/app/reducers | |
parent | ab01fef1c0ffddf09a20f90a910e5e068cf8c71e (diff) | |
parent | a600ccd4f863d7a473392fc283f4cec248225a27 (diff) | |
download | tangerine-wallet-browser-f162a11585392df5e593018a02549f8b03018d22.tar tangerine-wallet-browser-f162a11585392df5e593018a02549f8b03018d22.tar.gz tangerine-wallet-browser-f162a11585392df5e593018a02549f8b03018d22.tar.bz2 tangerine-wallet-browser-f162a11585392df5e593018a02549f8b03018d22.tar.lz tangerine-wallet-browser-f162a11585392df5e593018a02549f8b03018d22.tar.xz tangerine-wallet-browser-f162a11585392df5e593018a02549f8b03018d22.tar.zst tangerine-wallet-browser-f162a11585392df5e593018a02549f8b03018d22.zip |
Merge pull request #1154 from MetaMask/i765-gaslimits
Add ability to customize gas and gasPrice on tx confirmation screen
Diffstat (limited to 'ui/app/reducers')
-rw-r--r-- | ui/app/reducers/app.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/reducers/app.js b/ui/app/reducers/app.js index 136326301..7ea1e1d7c 100644 --- a/ui/app/reducers/app.js +++ b/ui/app/reducers/app.js @@ -291,7 +291,7 @@ function reduceApp (state, action) { case actions.SHOW_CONF_TX_PAGE: return extend(appState, { currentView: { - name: pendingTxs ? 'confTx' : 'account-detail', + name: 'confTx', context: 0, }, transForward: action.transForward, |