1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

Merge pull request #1727 from MetaMask/i1720-NoSpinnerOnConfig

No longer show network spinner on config screen
This commit is contained in:
Kevin Serrano 2017-07-03 15:30:51 -07:00 committed by GitHub
commit ba4a7de1a2
2 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@
## Current Master
- No longer show network loading indication on config screen, to allow selecting custom RPCs.
- Visually indicate that network spinner is a menu.
- Indicate what network is being searched for when disconnected.

View File

@ -66,7 +66,7 @@ function mapStateToProps (state) {
App.prototype.render = function () {
var props = this.props
const { isLoading, loadingMessage, transForward, network } = props
const isLoadingNetwork = network === 'loading'
const isLoadingNetwork = network === 'loading' && props.currentView.name !== 'config'
const loadMessage = loadingMessage || isLoadingNetwork ?
`Connecting to ${this.getNetworkName()}` : null