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
commit 2a9c7d2b9e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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;