this repo has no description
0
fork

Configure Feed

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

Fix wrong color for filtered group post

+2 -2
+2 -2
src/components/status.jsx
··· 1996 1996 1997 1997 function FilteredStatus({ status, filterInfo, instance, containerProps = {} }) { 1998 1998 const { 1999 - account: { avatar, avatarStatic, bot }, 1999 + account: { avatar, avatarStatic, bot, group }, 2000 2000 createdAt, 2001 2001 visibility, 2002 2002 reblog, ··· 2021 2021 2022 2022 return ( 2023 2023 <div 2024 - class={isReblog ? 'status-reblog' : ''} 2024 + class={isReblog ? (group ? 'status-group' : 'status-reblog') : ''} 2025 2025 {...containerProps} 2026 2026 title={statusPeekText} 2027 2027 onContextMenu={(e) => {