Browse Source

Clicking on a collapsed toot just uncollapses it.

closed-social-glitch-2
kibigo! 7 years ago
parent
commit
e60f27d649
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      app/javascript/mastodon/components/status.js

+ 3
- 2
app/javascript/mastodon/components/status.js View File

@ -153,8 +153,9 @@ class StatusUnextended extends ImmutablePureComponent {
}
handleClick = () => {
const { status } = this.props;
this.context.router.history.push(`/statuses/${status.getIn(['reblog', 'id'], status.get('id'))}`);
const { status, isCollapsed } = this.props;
if (isCollapsed) this.handleCollapsedClick();
else this.context.router.history.push(`/statuses/${status.getIn(['reblog', 'id'], status.get('id'))}`);
}
handleAccountClick = (e) => {

Loading…
Cancel
Save