mirror of
https://github.com/cheeaun/phanpy.git
synced 2025-02-16 07:11:15 +03:00
Fix wrong color for filtered group post
This commit is contained in:
parent
3d458826cf
commit
0ca29cb181
1 changed files with 2 additions and 2 deletions
|
@ -1996,7 +1996,7 @@ const unfurlMastodonLink = throttle(
|
|||
|
||||
function FilteredStatus({ status, filterInfo, instance, containerProps = {} }) {
|
||||
const {
|
||||
account: { avatar, avatarStatic, bot },
|
||||
account: { avatar, avatarStatic, bot, group },
|
||||
createdAt,
|
||||
visibility,
|
||||
reblog,
|
||||
|
@ -2021,7 +2021,7 @@ function FilteredStatus({ status, filterInfo, instance, containerProps = {} }) {
|
|||
|
||||
return (
|
||||
<div
|
||||
class={isReblog ? 'status-reblog' : ''}
|
||||
class={isReblog ? (group ? 'status-group' : 'status-reblog') : ''}
|
||||
{...containerProps}
|
||||
title={statusPeekText}
|
||||
onContextMenu={(e) => {
|
||||
|
|
Loading…
Add table
Reference in a new issue