Skip to content

Commit

Permalink
backport blog post footer editUrl fix #7727
Browse files Browse the repository at this point in the history
  • Loading branch information
slorber committed Jul 6, 2022
1 parent a583eac commit a390a87
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -21,7 +21,7 @@ export default function BlogPostItemFooter(props: Props): JSX.Element | null {
const truncatedPost = !isBlogPostPage && truncated;
const tagsExists = tags.length > 0;

const renderFooter = tagsExists || truncated;
const renderFooter = tagsExists || truncated || editUrl;

if (!renderFooter) {
return null;
Expand Down

0 comments on commit a390a87

Please sign in to comment.