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 = {} }) {
|
function FilteredStatus({ status, filterInfo, instance, containerProps = {} }) {
|
||||||
const {
|
const {
|
||||||
account: { avatar, avatarStatic, bot },
|
account: { avatar, avatarStatic, bot, group },
|
||||||
createdAt,
|
createdAt,
|
||||||
visibility,
|
visibility,
|
||||||
reblog,
|
reblog,
|
||||||
|
@ -2021,7 +2021,7 @@ function FilteredStatus({ status, filterInfo, instance, containerProps = {} }) {
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div
|
<div
|
||||||
class={isReblog ? 'status-reblog' : ''}
|
class={isReblog ? (group ? 'status-group' : 'status-reblog') : ''}
|
||||||
{...containerProps}
|
{...containerProps}
|
||||||
title={statusPeekText}
|
title={statusPeekText}
|
||||||
onContextMenu={(e) => {
|
onContextMenu={(e) => {
|
||||||
|
|
Loading…
Add table
Reference in a new issue