From 9d8286234f3a1390fdc8536d6ba3e0556597078e Mon Sep 17 00:00:00 2001 From: Lim Chee Aun Date: Thu, 22 Dec 2022 12:14:01 +0800 Subject: [PATCH] Fix the 'thread' badge being jumpy --- src/components/status.jsx | 12 +++++++----- 1 file changed, 7 insertions(+), 5 deletions(-) diff --git a/src/components/status.jsx b/src/components/status.jsx index d1a3f77..16209bd 100644 --- a/src/components/status.jsx +++ b/src/components/status.jsx @@ -271,7 +271,7 @@ function Status({ ))} - {inReplyToAccount && !withinContext && size !== 's' && ( + {inReplyToAccountId && !withinContext && size !== 's' && (
) : ( - <> - {' '} - - + !!inReplyToAccount && ( + <> + {' '} + + + ) )}
)}