From 221e35ec38fb9323bf0b0ca1d19dac7884fb79fa Mon Sep 17 00:00:00 2001 From: Dessalines Date: Sun, 5 Apr 2020 10:11:16 -0400 Subject: Try to fix post creation bug. --- ui/src/components/post.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ui/src/components/post.tsx') diff --git a/ui/src/components/post.tsx b/ui/src/components/post.tsx index f51ba6ff..de0f0e32 100644 --- a/ui/src/components/post.tsx +++ b/ui/src/components/post.tsx @@ -460,7 +460,7 @@ export class Post extends Component { } else if (res.op == UserOperation.Search) { let data = res.data as SearchResponse; this.state.crossPosts = data.posts.filter( - p => p.id != this.state.post.id + p => p.id != Number(this.props.match.params.id) ); this.setState(this.state); } else if (res.op == UserOperation.TransferSite) { -- cgit v1.2.3