forked from treehouse/mastodon
Fixed issue that the NSFW image is not hidden on detail page (#4244)
parent
8949aad030
commit
afa52e4d63
|
@ -183,6 +183,12 @@ export default class MediaGallery extends React.PureComponent {
|
||||||
visible: !this.props.sensitive,
|
visible: !this.props.sensitive,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
componentWillReceiveProps (nextProps) {
|
||||||
|
if (nextProps.sensitive !== this.props.sensitive) {
|
||||||
|
this.setState({ visible: !nextProps.sensitive });
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
handleOpen = () => {
|
handleOpen = () => {
|
||||||
this.setState({ visible: !this.state.visible });
|
this.setState({ visible: !this.state.visible });
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue