diff options
author | ThibG <thib@sitedethib.com> | 2019-06-10 19:27:10 +0200 |
---|---|---|
committer | Eugen Rochko <eugen@zeonfederated.com> | 2019-06-10 19:27:10 +0200 |
commit | 5bcd98172c2d0ec4827e396a3648eb1e94634c55 (patch) | |
tree | 6ffc2a9ea0db9a0c76afa69206afd456037abf50 /app/javascript | |
parent | 62852252dd76c6cc559d1cfb3b276c84791b074e (diff) |
Fix clicking on the left side of a conversation not marking it as read (#11041)
Diffstat (limited to 'app/javascript')
-rw-r--r-- | app/javascript/mastodon/components/status.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/app/javascript/mastodon/components/status.js b/app/javascript/mastodon/components/status.js index a795b8ce9..aa5e870dc 100644 --- a/app/javascript/mastodon/components/status.js +++ b/app/javascript/mastodon/components/status.js @@ -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; |