Fix: only show appeal CW item on moderated posts (#2312)
* Fix: only show appeal CW item on moderated posts * Add appeal cw control to feed view o fposts
This commit is contained in:
parent
6e001dbf1c
commit
0c9dc2163a
3 changed files with 19 additions and 4 deletions
|
@ -186,9 +186,9 @@ let PostThreadItemLoaded = ({
|
|||
return makeProfileLink(post.author, 'post', urip.rkey, 'reposted-by')
|
||||
}, [post.uri, post.author])
|
||||
const repostsTitle = 'Reposts of this post'
|
||||
const isSelfLabeledPost =
|
||||
const isModeratedPost =
|
||||
moderation.decisions.post.cause?.type === 'label' &&
|
||||
moderation.decisions.post.cause.label.src === currentAccount?.did
|
||||
moderation.decisions.post.cause.label.src !== currentAccount?.did
|
||||
|
||||
const translatorUrl = getTranslatorLink(
|
||||
record?.text || '',
|
||||
|
@ -335,7 +335,7 @@ let PostThreadItemLoaded = ({
|
|||
postUri={post.uri}
|
||||
record={record}
|
||||
showAppealLabelItem={
|
||||
post.author.did === currentAccount?.did && !isSelfLabeledPost
|
||||
post.author.did === currentAccount?.did && isModeratedPost
|
||||
}
|
||||
style={{
|
||||
paddingVertical: 6,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue