Skip to content

Commit

Permalink
Fix “read more” button behing hidden (regression from mastodon#11404) (
Browse files Browse the repository at this point in the history
…mastodon#11522)

* Fix “read more” button behing hidden (regression from mastodon#11404)

This has the side-effect of putting the “Read more” button below possibly
trunctated polls instead of putting the poll below the “Read more”

* Remove dead code
  • Loading branch information
ClearlyClaire authored and hiyuki2578 committed Oct 2, 2019

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
1 parent 429c84d commit d667f6b
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions app/javascript/mastodon/components/status_content.js
Original file line number Diff line number Diff line change
@@ -166,11 +166,6 @@ export default class StatusContent extends React.PureComponent {
}
}

handleCollapsedClick = (e) => {
e.preventDefault();
this.setState({ collapsed: !this.state.collapsed });
}

setRef = (c) => {
this.node = c;
}
@@ -234,15 +229,19 @@ export default class StatusContent extends React.PureComponent {
</div>
);
} else if (this.props.onClick) {
return (
const output = [
<div className={classNames} ref={this.setRef} tabIndex='0' style={directionStyle} onMouseDown={this.handleMouseDown} onMouseUp={this.handleMouseUp}>
<div className='status__content__text status__content__text--visible' style={directionStyle} dangerouslySetInnerHTML={content} lang={status.get('language')} />

{!!this.state.collapsed && readMoreButton}

{!!status.get('poll') && <PollContainer pollId={status.get('poll')} />}
</div>
);
</div>,
];

if (this.state.collapsed) {
output.push(readMoreButton);
}

return output;
} else {
return (
<div className={classNames} ref={this.setRef} tabIndex='0' style={directionStyle}>

0 comments on commit d667f6b

Please sign in to comment.