mirror of
https://github.com/facebook/docusaurus.git
synced 2025-12-26 01:33:02 +00: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
|
|
@ -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…
Reference in New Issue