Skip to content

Commit 6cd2cd8

Browse files
committed
Fix the dot on f-articles
1 parent 296980c commit 6cd2cd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/shared/components/Contentful/ArticleCard/ArticleCard.jsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ class ArticleCard extends React.Component {
250250
{
251251
showArticleInfo() && (
252252
<p className={theme.readTimeInfo}>
253-
{themeName === 'Article large' ? <span>&nbsp;.&nbsp;</span> : null}
253+
{themeName === 'Article large' && contentAuthor && contentAuthor.length > 0 ? <span>&nbsp;.&nbsp;</span> : null}
254254
{
255255
contentAuthor && contentAuthor.length > 0 ? (
256256
<Link

0 commit comments

Comments
 (0)