mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-12-23 11:21:26 +00:00
remove hook entirely
This commit is contained in:
parent
a6b59b78d2
commit
a29cb0e83b
1 changed files with 0 additions and 21 deletions
|
@ -42,7 +42,6 @@ import {
|
||||||
SavePost,
|
SavePost,
|
||||||
TransferCommunity,
|
TransferCommunity,
|
||||||
} from "lemmy-js-client";
|
} from "lemmy-js-client";
|
||||||
import deepEqual from "lodash.isequal";
|
|
||||||
import { relTags } from "../../config";
|
import { relTags } from "../../config";
|
||||||
import {
|
import {
|
||||||
BanType,
|
BanType,
|
||||||
|
@ -168,26 +167,6 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
|
||||||
this.handleEditCancel = this.handleEditCancel.bind(this);
|
this.handleEditCancel = this.handleEditCancel.bind(this);
|
||||||
}
|
}
|
||||||
|
|
||||||
componentWillReceiveProps(nextProps: PostListingProps) {
|
|
||||||
if (!deepEqual(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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue