mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Fix Import an Account link not working in Create Account modal
This commit is contained in:
parent
78836b0ead
commit
39d4fe311f
@ -28,6 +28,7 @@ function mapDispatchToProps (dispatch) {
|
||||
dispatch(actions.hideModal())
|
||||
})
|
||||
},
|
||||
showImportPage: () => dispatch(actions.showImportPage()),
|
||||
}
|
||||
}
|
||||
|
||||
@ -36,7 +37,7 @@ function NewAccountModal () {
|
||||
Component.call(this)
|
||||
|
||||
this.state = {
|
||||
newAccountName: ''
|
||||
newAccountName: '',
|
||||
}
|
||||
}
|
||||
|
||||
@ -63,7 +64,7 @@ NewAccountModal.prototype.render = function () {
|
||||
h('div.new-account-input-wrapper', {}, [
|
||||
h('input.new-account-input', {
|
||||
placeholder: 'E.g. My new account',
|
||||
onChange: (event) => this.setState({ newAccountName: event.target.value })
|
||||
onChange: event => this.setState({ newAccountName: event.target.value }),
|
||||
}, []),
|
||||
]),
|
||||
|
||||
@ -71,13 +72,16 @@ NewAccountModal.prototype.render = function () {
|
||||
'or',
|
||||
]),
|
||||
|
||||
h('div.new-account-modal-content.after-input', {}, [
|
||||
'Import an account',
|
||||
]),
|
||||
h('div.new-account-modal-content.after-input.pointer', {
|
||||
onClick: () => {
|
||||
this.props.hideModal()
|
||||
this.props.showImportPage()
|
||||
},
|
||||
}, 'Import an account'),
|
||||
|
||||
h('div.new-account-modal-content.button', {}, [
|
||||
h('button.btn-clear', {
|
||||
onClick: () => this.props.createAccount(newAccountName)
|
||||
onClick: () => this.props.createAccount(newAccountName),
|
||||
}, [
|
||||
'SAVE',
|
||||
]),
|
||||
|
Loading…
Reference in New Issue
Block a user