this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Fix the 'thread' badge being jumpy

+7 -5
+7 -5
src/components/status.jsx
··· 271 271 </span> 272 272 ))} 273 273 </div> 274 - {inReplyToAccount && !withinContext && size !== 's' && ( 274 + {inReplyToAccountId && !withinContext && size !== 's' && ( 275 275 <div 276 276 class={`status-${ 277 277 inReplyToAccountId === status.account.id ? 'thread' : 'reply' ··· 283 283 Thread 284 284 </> 285 285 ) : ( 286 - <> 287 - <Icon icon="reply" />{' '} 288 - <NameText account={inReplyToAccount} short /> 289 - </> 286 + !!inReplyToAccount && ( 287 + <> 288 + <Icon icon="reply" />{' '} 289 + <NameText account={inReplyToAccount} short /> 290 + </> 291 + ) 290 292 )} 291 293 </div> 292 294 )}