mirror of
https://github.com/facebook/docusaurus.git
synced 2025-06-08 13:52:36 +02:00
fix(theme): show blog post edit link even when no tag & not truncated (#7727)
Show edit link even when no tag & not truncated.
This commit is contained in:
parent
f224d3c669
commit
a25e18ce32
1 changed files with 1 additions and 1 deletions
|
@ -110,7 +110,7 @@ export default function BlogPostItem(props: Props): JSX.Element {
|
||||||
<MDXContent>{children}</MDXContent>
|
<MDXContent>{children}</MDXContent>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
{(tagsExists || truncated) && (
|
{(tagsExists || truncated || editUrl) && (
|
||||||
<footer
|
<footer
|
||||||
className={clsx(
|
className={clsx(
|
||||||
'row docusaurus-mt-lg',
|
'row docusaurus-mt-lg',
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue