Fix issue where stopPropagation didnt stop submitting the tx when clicking buy button

feature/default_network_editable
frankiebee 8 years ago
parent 2e75011778
commit 1eda55c85a
  1. 2
      ui/app/conf-tx.js

@ -141,7 +141,7 @@ function currentTxView (opts) {
}
ConfirmTxScreen.prototype.buyEth = function (address, event) {
this.stopPropagation(event)
event.preventDefault()
this.props.dispatch(actions.buyEthView(address))
}

Loading…
Cancel
Save