Merge pull request #3145 from MetaMask/i3089-FixNullError

Add warning when importing no valid file
feature/default_network_editable
Frankie 7 years ago committed by GitHub
commit 1a32690a12
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      CHANGELOG.md
  2. 6
      ui/app/accounts/import/json.js

@ -2,6 +2,8 @@
## Current Master ## Current Master
- Add warning for importing some kinds of files.
## 3.13.8 2018-1-29 ## 3.13.8 2018-1-29
- Fix provider for Kovan network. - Fix provider for Kovan network.

@ -81,6 +81,12 @@ JsonImportSubview.prototype.createKeyringOnEnter = function (event) {
JsonImportSubview.prototype.createNewKeychain = function () { JsonImportSubview.prototype.createNewKeychain = function () {
const state = this.state const state = this.state
if (!state) {
const message = 'You must select a valid file to import.'
return this.props.dispatch(actions.displayWarning(message))
}
const { fileContents } = state const { fileContents } = state
if (!fileContents) { if (!fileContents) {

Loading…
Cancel
Save