1
0
mirror of https://github.com/kremalicious/metamask-extension.git synced 2024-12-23 09:52:26 +01:00

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

This commit is contained in:
frankiebee 2017-04-24 12:35:45 +02:00
parent 2e75011778
commit 1eda55c85a

View File

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