Fixed issue that the NSFW image is not hidden on detail page (#4244)

th-downstream
abcang 7 years ago committed by Eugen Rochko
parent fe4429446f
commit c5cd48bff7

@ -183,6 +183,12 @@ export default class MediaGallery extends React.PureComponent {
visible: !this.props.sensitive,
};
componentWillReceiveProps (nextProps) {
if (nextProps.sensitive !== this.props.sensitive) {
this.setState({ visible: !nextProps.sensitive });
}
}
handleOpen = () => {
this.setState({ visible: !this.state.visible });
}

Loading…
Cancel
Save