Merge branch 'patch-1' into 'develop'
Update status_content.js Fixes #473 Closes #473 See merge request soapbox-pub/soapbox-fe!348
This commit is contained in:
commit
72217c9100
1 changed files with 4 additions and 3 deletions
|
@ -71,12 +71,13 @@ export default class StatusContent extends React.PureComponent {
|
|||
this.props.collapsable
|
||||
&& this.props.onClick
|
||||
&& this.state.collapsed === null
|
||||
&& node.clientHeight > MAX_HEIGHT
|
||||
&& this.props.status.get('spoiler_text').length === 0
|
||||
) {
|
||||
if (node.clientHeight > MAX_HEIGHT){
|
||||
this.setState({ collapsed: true });
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
componentDidMount() {
|
||||
this.setCollapse();
|
||||
|
|
Loading…
Reference in a new issue