partially revert change

This commit is contained in:
Alec Armbruster 2023-06-26 17:04:19 -04:00 committed by Jay Sitter
parent dce70e37d6
commit 87a5231745

View file

@ -167,6 +167,26 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
this.handleEditCancel = this.handleEditCancel.bind(this); 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 { get postView(): PostView {
return this.props.post_view; return this.props.post_view;
} }