Fix clicking on the left side of a conversation not marking it as read (#11041)
parent
cf7950977a
commit
17ee16cbfe
|
@ -171,6 +171,11 @@ class Status extends ImmutablePureComponent {
|
||||||
}
|
}
|
||||||
|
|
||||||
handleExpandClick = (e) => {
|
handleExpandClick = (e) => {
|
||||||
|
if (this.props.onClick) {
|
||||||
|
this.props.onClick();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
if (e.button === 0) {
|
if (e.button === 0) {
|
||||||
if (!this.context.router) {
|
if (!this.context.router) {
|
||||||
return;
|
return;
|
||||||
|
|
Loading…
Reference in New Issue