Fix i18n issue with no communities.

This commit is contained in:
Dessalines 2020-02-05 12:56:01 -05:00
parent 420fb5a847
commit 02511eefb9

View File

@ -3,6 +3,7 @@ import { Link } from 'inferno-router';
import { Post } from '../interfaces'; import { Post } from '../interfaces';
import { PostListing } from './post-listing'; import { PostListing } from './post-listing';
import { i18n } from '../i18next'; import { i18n } from '../i18next';
import { T } from 'inferno-i18next';
interface PostListingsProps { interface PostListingsProps {
posts: Array<Post>; posts: Array<Post>;
@ -36,11 +37,9 @@ export class PostListings extends Component<PostListingsProps, any> {
<> <>
<div>{i18n.t('no_posts')}</div> <div>{i18n.t('no_posts')}</div>
{this.props.showCommunity !== undefined && ( {this.props.showCommunity !== undefined && (
<div> <T i18nKey="subscribe_to_communities">
<Link to="/communities"> #<Link to="/communities">#</Link>
{i18n.t('subscribe_to_communities')} </T>
</Link>
</div>
)} )}
</> </>
)} )}