mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-04 19:50:00 +00:00
Switching back to going directly to link if it has a url.
This commit is contained in:
parent
e4532aa1cb
commit
89bb346e63
1 changed files with 6 additions and 1 deletions
|
@ -71,7 +71,12 @@ export class PostListing extends Component<PostListingProps, PostListingState> {
|
|||
}
|
||||
<div className="ml-4">
|
||||
<div>
|
||||
<h5 className="mb-0 d-inline"><Link className="text-white" to={`/post/${post.id}`}>{post.name}</Link></h5>
|
||||
<h5 className="mb-0 d-inline">
|
||||
{post.url ?
|
||||
<a className="text-white" href={post.url} target="_blank" title={post.url}>{post.name}</a> :
|
||||
<Link className="text-white" to={`/post/${post.id}`} title="Comments">{post.name}</Link>
|
||||
}
|
||||
</h5>
|
||||
{post.url &&
|
||||
<small>
|
||||
<a className="ml-2 text-muted font-italic" href={post.url} target="_blank" title={post.url}>{(new URL(post.url)).hostname}</a>
|
||||
|
|
Loading…
Reference in a new issue