Switching back to going directly to link if it has a url.

pull/722/head
Dessalines 5 years ago
parent e4532aa1cb
commit 89bb346e63

@ -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…
Cancel
Save