From 5bcd98172c2d0ec4827e396a3648eb1e94634c55 Mon Sep 17 00:00:00 2001 From: ThibG Date: Mon, 10 Jun 2019 19:27:10 +0200 Subject: [PATCH] Fix clicking on the left side of a conversation not marking it as read (#11041) --- app/javascript/mastodon/components/status.js | 5 +++++ 1 file changed, 5 insertions(+) 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;