summaryrefslogtreecommitdiffstats
path: root/ui/src/components/post-listings.tsx
diff options
context:
space:
mode:
authorDessalines <tyhou13@gmx.com>2019-04-05 13:22:59 -0700
committerDessalines <tyhou13@gmx.com>2019-04-05 13:22:59 -0700
commit751cf26be6ff598bd1ef213e4a60df5f0db8ceed (patch)
tree1b41b381e063d9bc805184a74f7178d41d04c3f9 /ui/src/components/post-listings.tsx
parent38fa7969f95f49f20074ad8b982d8d92923071ad (diff)
Adding comment permalinks.
Fixes #18
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 fcc41cf5..98fe8f21 100644
--- a/ui/src/components/post-listings.tsx
+++ b/ui/src/components/post-listings.tsx
@@ -83,7 +83,7 @@ export class PostListings extends Component<PostListingsProps, PostListingsState
{this.state.posts.length > 0
? this.state.posts.map(post =>
<PostListing post={post} showCommunity={!this.props.communityId}/>)
- : <div>No Listings</div>
+ : <div>No Listings. Subscribe to some <Link to="/communities">forums</Link>.</div>
}
</div>
)