diff options
-rw-r--r-- | app/javascript/mastodon/components/status.js | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/app/javascript/mastodon/components/status.js b/app/javascript/mastodon/components/status.js index cbbd831e7..0077a9191 100644 --- a/app/javascript/mastodon/components/status.js +++ b/app/javascript/mastodon/components/status.js @@ -169,7 +169,8 @@ class StatusUnextended extends ImmutablePureComponent { if (e.button === 0) { const id = Number(e.currentTarget.getAttribute('data-id')); e.preventDefault(); - this.context.router.history.push(`/accounts/${id}`); + if (this.state.isCollapsed) this.handleCollapsedClick(); + else this.context.router.history.push(`/accounts/${id}`); } } |