2
0

Fix quote-inline fallback being removed even for legacy quotes (#36638)

This commit is contained in:
Claire
2025-10-29 12:56:34 +01:00
committed by GitHub
parent 51877081b4
commit 2a9c7d2b9e
2 changed files with 2 additions and 2 deletions

View File

@@ -177,7 +177,7 @@ class StatusContent extends PureComponent {
{children}
</HandledLink>
);
} else if (element.classList.contains('quote-inline')) {
} else if (element.classList.contains('quote-inline') && this.props.status.get('quote')) {
return null;
}
return undefined;