Edit account modal shows and allows editing of name from props, not just placeholder.

feature/default_network_editable
Dan 7 years ago committed by Chi Kei Chan
parent c9c940bfc1
commit 49aa6e73ea
  1. 5
      ui/app/components/modals/edit-account-name-modal.js

@ -24,10 +24,11 @@ function mapDispatchToProps (dispatch) {
}
inherits(EditAccountNameModal, Component)
function EditAccountNameModal () {
function EditAccountNameModal (props) {
Component.call(this)
this.state = {
inputText: '',
inputText: props.identity.name,
}
}

Loading…
Cancel
Save