Skip to content

Commit ba4a7de

Browse files
authored
Merge pull request #1727 from MetaMask/i1720-NoSpinnerOnConfig
No longer show network spinner on config screen
2 parents 27c651d + 36e0fef commit ba4a7de

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22

33
## Current Master
44

5+
- No longer show network loading indication on config screen, to allow selecting custom RPCs.
56
- Visually indicate that network spinner is a menu.
67
- Indicate what network is being searched for when disconnected.
78

ui/app/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ function mapStateToProps (state) {
6666
App.prototype.render = function () {
6767
var props = this.props
6868
const { isLoading, loadingMessage, transForward, network } = props
69-
const isLoadingNetwork = network === 'loading'
69+
const isLoadingNetwork = network === 'loading' && props.currentView.name !== 'config'
7070
const loadMessage = loadingMessage || isLoadingNetwork ?
7171
`Connecting to ${this.getNetworkName()}` : null
7272

0 commit comments

Comments
 (0)