Skip to content
Snippets Groups Projects
Commit e9066770 authored by Eugen's avatar Eugen Committed by GitHub
Browse files

Stop event propagation after IconButton onClick

parent 4f25e3d0
No related branches found
No related tags found
No related merge requests found
......@@ -22,6 +22,7 @@ const IconButton = React.createClass({
handleClick (e) {
e.preventDefault();
this.props.onClick();
e.stopPropagation();
},
render () {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment