Skip to content
Snippets Groups Projects
Commit 5bcd9817 authored by ThibG's avatar ThibG Committed by Eugen Rochko
Browse files

Fix clicking on the left side of a conversation not marking it as read (#11041)

parent 62852252
No related branches found
No related tags found
Loading
......@@ -171,6 +171,11 @@ class Status extends ImmutablePureComponent {
}
handleExpandClick = (e) => {
if (this.props.onClick) {
this.props.onClick();
return;
}
if (e.button === 0) {
if (!this.context.router) {
return;
......
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