diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-12-27 08:48:23 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-27 08:48:23 -0800 |
commit | 0c9dc2163ab5102e58f13597ba84e14717e09ffd (patch) | |
tree | 8b123f92c9b1b40e390c68abe6b573070237c930 /src/view/com/util/post-ctrls/PostCtrls.tsx | |
parent | 6e001dbf1ce87f00f064a1a9f772c19185179f0e (diff) | |
download | voidsky-0c9dc2163ab5102e58f13597ba84e14717e09ffd.tar.zst |
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
Diffstat (limited to 'src/view/com/util/post-ctrls/PostCtrls.tsx')
-rw-r--r-- | src/view/com/util/post-ctrls/PostCtrls.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/view/com/util/post-ctrls/PostCtrls.tsx b/src/view/com/util/post-ctrls/PostCtrls.tsx index 414fb1e09..a50b52175 100644 --- a/src/view/com/util/post-ctrls/PostCtrls.tsx +++ b/src/view/com/util/post-ctrls/PostCtrls.tsx @@ -31,12 +31,14 @@ let PostCtrls = ({ big, post, record, + showAppealLabelItem, style, onPressReply, }: { big?: boolean post: Shadow<AppBskyFeedDefs.PostView> record: AppBskyFeedPost.Record + showAppealLabelItem?: boolean style?: StyleProp<ViewStyle> onPressReply: () => void }): React.ReactNode => { @@ -207,6 +209,7 @@ let PostCtrls = ({ postCid={post.cid} postUri={post.uri} record={record} + showAppealLabelItem={showAppealLabelItem} style={styles.ctrlPad} /> )} |