mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-05 20:15:01 +00:00
Making links go to post page.
This commit is contained in:
parent
deae2b6ade
commit
a95f282936
1 changed files with 7 additions and 18 deletions
25
ui/src/components/post-listing.tsx
vendored
25
ui/src/components/post-listing.tsx
vendored
|
@ -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>
|
||||
|
|
Loading…
Reference in a new issue