Fix quote-inline fallback being removed even for legacy quotes (#36638)
This commit is contained in:
parent
51877081b4
commit
2a9c7d2b9e
2 changed files with 2 additions and 2 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue