From: Dessalines Date: Wed, 2 Feb 2022 14:53:17 +0000 (-0500) Subject: Fix post title link bug. Fixes #547 (#563) X-Git-Url: http://these/git/?a=commitdiff_plain;h=0ca801522bda511fe2fcb406d12cb7256c710f95;p=lemmy-ui.git Fix post title link bug. Fixes #547 (#563) --- diff --git a/src/shared/components/post/post-listing.tsx b/src/shared/components/post/post-listing.tsx index bf90cb2..a923c1f 100644 --- a/src/shared/components/post/post-listing.tsx +++ b/src/shared/components/post/post-listing.tsx @@ -1627,7 +1627,6 @@ export class PostListing extends Component { handleImageExpandClick(i: PostListing, event: any) { event.preventDefault(); i.state.imageExpanded = !i.state.imageExpanded; - i.state.showBody = i.state.imageExpanded; i.setState(i.state); setupTippy(); }