mirror of
https://github.com/facebook/docusaurus.git
synced 2025-06-05 12:22:45 +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>
|
||||
</div>
|
||||
|
||||
{(tagsExists || truncated) && (
|
||||
{(tagsExists || truncated || editUrl) && (
|
||||
<footer
|
||||
className={clsx(
|
||||
'row docusaurus-mt-lg',
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue