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 authored and slorber committed Jul 14, 2022
1 parent 7b1e1af commit dd67646
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 dd67646

Please sign in to comment.