Skip to content

Commit

Permalink
fix(theme): show blog post edit link even when no tag & not truncated (
Browse files Browse the repository at this point in the history
…#7727)

Show edit link even when no tag & not truncated.
  • Loading branch information
anaclumos committed Jul 6, 2022
1 parent f224d3c commit a25e18c
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -110,7 +110,7 @@ export default function BlogPostItem(props: Props): JSX.Element {
<MDXContent>{children}</MDXContent>
</div>

{(tagsExists || truncated) && (
{(tagsExists || truncated || editUrl) && (
<footer
className={clsx(
'row docusaurus-mt-lg',
Expand Down

0 comments on commit a25e18c

Please sign in to comment.