Clicking on a collapsed toot just uncollapses it.

lolsob-rspec
kibigo! 2017-06-25 16:09:32 -07:00
parent ab0e92d337
commit 92c404d703
1 changed files with 3 additions and 2 deletions

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) => {