sforkowany z mirror/soapbox
Update status_content.js Fixes #473
rodzic
0a4485e244
commit
9768c18c72
|
@ -66,15 +66,16 @@ export default class StatusContent extends React.PureComponent {
|
|||
if (!node) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
if (
|
||||
this.props.collapsable
|
||||
&& this.props.onClick
|
||||
&& this.state.collapsed === null
|
||||
&& node.clientHeight > MAX_HEIGHT
|
||||
&& this.props.status.get('spoiler_text').length === 0
|
||||
) {
|
||||
this.setState({ collapsed: true });
|
||||
if (node.clientHeight > MAX_HEIGHT){
|
||||
this.setState({ collapsed: true });
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Ładowanie…
Reference in New Issue