diff --git a/src/pages/status.jsx b/src/pages/status.jsx index 922b25ff..fa53703c 100644 --- a/src/pages/status.jsx +++ b/src/pages/status.jsx @@ -185,6 +185,7 @@ function StatusPage() { id: s.id, ancestor: true, accountID: s.account.id, + repliesCount: s.repliesCount, })), { id, accountID: heroStatus.account.id }, ...nestedDescendants.map((s) => ({ @@ -627,6 +628,7 @@ function StatusPage() { descendant, thread, replies, + repliesCount, } = status; const isHero = statusID === id; return ( @@ -729,6 +731,14 @@ function StatusPage() { size={thread || ancestor ? 'm' : 's'} enableTranslate /> + {ancestor && !!repliesCount && ( + + )}{' '} {/* {replies?.length > LIMIT && (