Skip to content

Commit d52cf68

Browse files
committed
Fix hr
1 parent ff4cc47 commit d52cf68

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

site/_core/BlogPost.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ var BlogPost = React.createClass({
1717
<div className="inner-content">
1818
<h1>{isPermalink ? post.title : <a href={post.url}>{post.title}</a>}</h1>
1919
<p>{new Date(post.date).toLocaleDateString()} by {post.byline}</p>
20-
{post.guestBio ? <hr /> : null}
20+
{post.guestBio ? null : <hr />}
2121
{post.guestBio && <p className="guestBio">{
2222
`This guest article contributed by ${post.byline}, ${post.guestBio}.`
2323
}</p>}

0 commit comments

Comments
 (0)