mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-12 15:34:00 +00:00
Making links go to post page.
This commit is contained in:
parent
a27badefba
commit
177c462b40
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="ml-4">
|
||||||
<div className="post-title text-wrap-truncate">
|
<div className="post-title text-wrap-truncate">
|
||||||
<h5 className="mb-0 d-inline">
|
<h5 className="mb-0 d-inline">
|
||||||
{post.url ? (
|
<Link
|
||||||
<a
|
className="text-body"
|
||||||
className="text-body"
|
to={`/post/${post.id}`}
|
||||||
href={post.url}
|
title={i18n.t('comments')}
|
||||||
target="_blank"
|
>
|
||||||
title={post.url}
|
{post.name}
|
||||||
>
|
</Link>
|
||||||
{post.name}
|
|
||||||
</a>
|
|
||||||
) : (
|
|
||||||
<Link
|
|
||||||
className="text-body"
|
|
||||||
to={`/post/${post.id}`}
|
|
||||||
title={i18n.t('comments')}
|
|
||||||
>
|
|
||||||
{post.name}
|
|
||||||
</Link>
|
|
||||||
)}
|
|
||||||
</h5>
|
</h5>
|
||||||
{post.url && (
|
{post.url && (
|
||||||
<small>
|
<small>
|
||||||
|
|
Loading…
Reference in a new issue