From 2fa5d745560e57c14ee7710247d34c48c1792fca Mon Sep 17 00:00:00 2001 From: Dessalines Date: Mon, 31 Jan 2022 11:09:19 -0500 Subject: [PATCH] Fix post title link bug. Fixes #547 --- src/shared/components/post/post-listing.tsx | 1 - 1 file changed, 1 deletion(-) diff --git a/src/shared/components/post/post-listing.tsx b/src/shared/components/post/post-listing.tsx index bf90cb263..a923c1f61 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(); }