Making links go to post page.

pull/744/head
Dessalines 2020-02-14 10:02:37 -05:00
parent a27badefba
commit 177c462b40
1 changed files with 7 additions and 18 deletions

View File

@ -171,24 +171,13 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
<div className="ml-4">
<div className="post-title text-wrap-truncate">
<h5 className="mb-0 d-inline">
{post.url ? (
<a
className="text-body"
href={post.url}
target="_blank"
title={post.url}
>
{post.name}
</a>
) : (
<Link
className="text-body"
to={`/post/${post.id}`}
title={i18n.t('comments')}
>
{post.name}
</Link>
)}
<Link
className="text-body"
to={`/post/${post.id}`}
title={i18n.t('comments')}
>
{post.name}
</Link>
</h5>
{post.url && (
<small>