diff options
author | Paul Frazee <pfrazee@gmail.com> | 2024-06-18 16:36:46 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-19 02:36:46 +0300 |
commit | 07c2be255f42c60401cec1476e3347bdb0b28db5 (patch) | |
tree | 80d96bc687cc626a749c0539984b8ad5d66915c0 /src/components/moderation/PostAlerts.tsx | |
parent | ac08c761687f87baaa60b353c7d432ace8d7eca3 (diff) | |
download | voidsky-07c2be255f42c60401cec1476e3347bdb0b28db5.tar.zst |
Collection of moderation fixes (#4566)
* Fix: dont blur parents in threads that embed blocks * After tapping 'Show hidden replies', show the individual hider cards * Add shape override to UserAvatar and fix the fallback avi for labelers * Fix precedence * Detect shape for DefaultAvatar --------- Co-authored-by: Dan Abramov <dan.abramov@gmail.com>
Diffstat (limited to 'src/components/moderation/PostAlerts.tsx')
-rw-r--r-- | src/components/moderation/PostAlerts.tsx | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/components/moderation/PostAlerts.tsx b/src/components/moderation/PostAlerts.tsx index 0b48b51d1..ec7529a4f 100644 --- a/src/components/moderation/PostAlerts.tsx +++ b/src/components/moderation/PostAlerts.tsx @@ -92,6 +92,8 @@ function PostLabel({ <UserAvatar avatar={desc.sourceAvi} size={size === 'large' ? 16 : 12} + type="labeler" + shape="circle" /> ) : ( <desc.icon size="sm" fill={t.atoms.text_contrast_medium.color} /> |