summaryrefslogtreecommitdiffstats
path: root/ui/src/components/post-listings.tsx
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2019-04-28 19:05:11 -0700
committerDessalines <tyhou13@gmx.com>2019-04-28 19:05:11 -0700
commit50dfcefc9564baa896de8b3f1efbcc61de7054f3 (patch)
tree9428fb57451ebf7d21e5799fdba49161a7fc35d2 /ui/src/components/post-listings.tsx
parent3c19843ce8b8f8582b09ba88e8d30bbc7b88cbc8 (diff)
Changing from forum to community
- Fixes #121
Diffstat (limited to 'ui/src/components/post-listings.tsx')
-rw-r--r--ui/src/components/post-listings.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/src/components/post-listings.tsx b/ui/src/components/post-listings.tsx
index c1126f52..93b2f606 100644
--- a/ui/src/components/post-listings.tsx
+++ b/ui/src/components/post-listings.tsx
@@ -19,7 +19,7 @@ export class PostListings extends Component<PostListingsProps, any> {
<div>
{this.props.posts.length > 0 ? this.props.posts.map(post =>
<PostListing post={post} showCommunity={this.props.showCommunity} />) :
- <div>No Listings. {!this.props.showCommunity && <span>Subscribe to some <Link to="/communities">forums</Link>.</span>}
+ <div>No posts. {this.props.showCommunity !== undefined && <span>Subscribe to some <Link to="/communities">communities</Link>.</span>}
</div>
}
</div>