Skip to content

Commit

Permalink
Fixed #387
Browse files Browse the repository at this point in the history
  • Loading branch information
mertsincan committed Apr 19, 2018
1 parent 7b61252 commit 6c9129a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/components/messages/UIMessage.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ export class UIMessage extends Component {

if (event) {
event.preventDefault();
event.stopPropagation();
}
}

Expand Down Expand Up @@ -92,7 +93,7 @@ export class UIMessage extends Component {
let messages = this.renderMessages();

return (
<div ref={(el) => { this.container = el; }} className={className}>
<div ref={(el) => { this.container = el; }} className={className} onClick={this.onClick}>
<div className="ui-messages-wrapper">
{closeIcon}
<span className={icon}></span>
Expand Down

0 comments on commit 6c9129a

Please sign in to comment.