mirror of
https://github.com/LemmyNet/lemmy-ui.git
synced 2024-11-10 02:15:11 +00:00
fix bug collapsing previews when voting
This commit is contained in:
parent
4b5fe717ad
commit
a6b59b78d2
|
@ -42,6 +42,7 @@ import {
|
|||
SavePost,
|
||||
TransferCommunity,
|
||||
} from "lemmy-js-client";
|
||||
import deepEqual from "lodash.isequal";
|
||||
import { relTags } from "../../config";
|
||||
import {
|
||||
BanType,
|
||||
|
@ -168,7 +169,7 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
|
|||
}
|
||||
|
||||
componentWillReceiveProps(nextProps: PostListingProps) {
|
||||
if (this.props !== nextProps) {
|
||||
if (!deepEqual(this.props, nextProps)) {
|
||||
this.setState({
|
||||
purgeLoading: false,
|
||||
reportLoading: false,
|
||||
|
@ -183,7 +184,6 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
|
|||
addModLoading: false,
|
||||
addAdminLoading: false,
|
||||
transferLoading: false,
|
||||
imageExpanded: false,
|
||||
});
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue