partially revert change

This commit is contained in:
Alec Armbruster 2023-06-26 17:04:19 -04:00
parent 500a0113c4
commit 2b1647c9b8
No known key found for this signature in database
GPG key ID: 52BC7C84E960FD1B

View file

@ -167,6 +167,26 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
this.handleEditCancel = this.handleEditCancel.bind(this);
}
componentWillReceiveProps(nextProps: PostListingProps) {
if (this.props !== nextProps) {
this.setState({
purgeLoading: false,
reportLoading: false,
blockLoading: false,
lockLoading: false,
deleteLoading: false,
removeLoading: false,
saveLoading: false,
featureCommunityLoading: false,
featureLocalLoading: false,
banLoading: false,
addModLoading: false,
addAdminLoading: false,
transferLoading: false,
});
}
}
get postView(): PostView {
return this.props.post_view;
}