sforkowany z mirror/soapbox
Merge branch 'patch-1' into 'develop'
Update status_content.js Fixes #473 Closes #473 See merge request soapbox-pub/soapbox-fe!348renovate/react-overlays-4.x
commit
72217c9100
|
@ -66,15 +66,16 @@ export default class StatusContent extends React.PureComponent {
|
||||||
if (!node) {
|
if (!node) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (
|
if (
|
||||||
this.props.collapsable
|
this.props.collapsable
|
||||||
&& this.props.onClick
|
&& this.props.onClick
|
||||||
&& this.state.collapsed === null
|
&& this.state.collapsed === null
|
||||||
&& node.clientHeight > MAX_HEIGHT
|
|
||||||
&& this.props.status.get('spoiler_text').length === 0
|
&& 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