Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

`true` (#4833)

authored by

Hailey and committed by
GitHub
39140252 401e92ed

+30 -32
+30 -32
src/view/com/post/Post.tsx
··· 209 209 </View> 210 210 )} 211 211 <LabelsOnMyPost post={post} /> 212 - {false && ( 213 - <ContentHider 212 + <ContentHider 213 + modui={moderation.ui('contentView')} 214 + style={styles.contentHider} 215 + childContainerStyle={styles.contentHiderChild}> 216 + <PostAlerts 214 217 modui={moderation.ui('contentView')} 215 - style={styles.contentHider} 216 - childContainerStyle={styles.contentHiderChild}> 217 - <PostAlerts 218 - modui={moderation.ui('contentView')} 219 - style={[a.py_xs]} 220 - /> 221 - {richText.text ? ( 222 - <View style={styles.postTextContainer}> 223 - <RichText 224 - enableTags 225 - testID="postText" 226 - value={richText} 227 - numberOfLines={limitLines ? MAX_POST_LINES : undefined} 228 - style={[a.flex_1, a.text_md]} 229 - authorHandle={post.author.handle} 230 - /> 231 - </View> 232 - ) : undefined} 233 - {limitLines ? ( 234 - <TextLink 235 - text={_(msg`Show More`)} 236 - style={pal.link} 237 - onPress={onPressShowMore} 238 - href="#" 218 + style={[a.py_xs]} 219 + /> 220 + {richText.text ? ( 221 + <View style={styles.postTextContainer}> 222 + <RichText 223 + enableTags 224 + testID="postText" 225 + value={richText} 226 + numberOfLines={limitLines ? MAX_POST_LINES : undefined} 227 + style={[a.flex_1, a.text_md]} 228 + authorHandle={post.author.handle} 239 229 /> 240 - ) : undefined} 241 - {post.embed ? ( 242 - <PostEmbeds embed={post.embed} moderation={moderation} /> 243 - ) : null} 244 - </ContentHider> 245 - )} 230 + </View> 231 + ) : undefined} 232 + {limitLines ? ( 233 + <TextLink 234 + text={_(msg`Show More`)} 235 + style={pal.link} 236 + onPress={onPressShowMore} 237 + href="#" 238 + /> 239 + ) : undefined} 240 + {post.embed ? ( 241 + <PostEmbeds embed={post.embed} moderation={moderation} /> 242 + ) : null} 243 + </ContentHider> 246 244 <PostCtrls 247 245 post={post} 248 246 record={record}