Fix quoted posts appearing between text and media (#35011)

This commit is contained in:
Claire 2025-06-11 15:17:42 +02:00 committed by GitHub
parent 933ee420c3
commit 722fb1ff55
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 5 deletions

View file

@ -588,10 +588,10 @@ class Status extends ImmutablePureComponent {
{...statusContentProps} {...statusContentProps}
/> />
{children}
{media} {media}
{hashtagBar} {hashtagBar}
{children}
</> </>
)} )}

View file

@ -377,12 +377,12 @@ export const DetailedStatus: React.FC<{
{...(statusContentProps as any)} {...(statusContentProps as any)}
/> />
{media}
{hashtagBar}
{status.get('quote') && ( {status.get('quote') && (
<QuotedStatus quote={status.get('quote')} /> <QuotedStatus quote={status.get('quote')} />
)} )}
{media}
{hashtagBar}
</> </>
)} )}