From 0629ea4cba0a9965b411b4df2ef118402607901e Mon Sep 17 00:00:00 2001 From: Claire Date: Wed, 11 Jun 2025 15:17:42 +0200 Subject: [PATCH] [Glitch] Fix quoted posts appearing between text and media Port 722fb1ff55c5c3c94294cbc1c39c7084696de6f8 to glitch-soc Signed-off-by: Claire --- app/javascript/flavours/glitch/components/status.jsx | 4 ++-- .../glitch/features/status/components/detailed_status.tsx | 6 +++--- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/app/javascript/flavours/glitch/components/status.jsx b/app/javascript/flavours/glitch/components/status.jsx index b1c6fbb4ce..4b5c23280d 100644 --- a/app/javascript/flavours/glitch/components/status.jsx +++ b/app/javascript/flavours/glitch/components/status.jsx @@ -735,10 +735,10 @@ class Status extends ImmutablePureComponent { {...statusContentProps} /> - {children} - {media} {hashtagBar} + + {children} )} diff --git a/app/javascript/flavours/glitch/features/status/components/detailed_status.tsx b/app/javascript/flavours/glitch/features/status/components/detailed_status.tsx index 9e772837e1..c474a3eeb3 100644 --- a/app/javascript/flavours/glitch/features/status/components/detailed_status.tsx +++ b/app/javascript/flavours/glitch/features/status/components/detailed_status.tsx @@ -414,12 +414,12 @@ export const DetailedStatus: React.FC<{ {...(statusContentProps as any)} /> + {media} + {hashtagBar} + {status.get('quote') && ( )} - - {media} - {hashtagBar} )}