From b5c1fec845a0a59dae10faace7418c1756f2998f Mon Sep 17 00:00:00 2001 From: Dessalines Date: Mon, 18 May 2020 09:50:05 -0400 Subject: Fixing issue with empty crossposts. --- ui/src/components/post.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'ui/src/components/post.tsx') diff --git a/ui/src/components/post.tsx b/ui/src/components/post.tsx index bf3694ba..297d0465 100644 --- a/ui/src/components/post.tsx +++ b/ui/src/components/post.tsx @@ -457,7 +457,9 @@ export class Post extends Component { this.state.crossPosts = data.posts.filter( p => p.id != Number(this.props.match.params.id) ); - this.state.post.duplicates = this.state.crossPosts; + if (this.state.crossPosts.length) { + this.state.post.duplicates = this.state.crossPosts; + } this.setState(this.state); } else if (res.op == UserOperation.TransferSite) { let data = res.data as GetSiteResponse; -- cgit v1.2.3