Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix post thread item hider line height crop (#8028)

authored by

Samuel Newman and committed by
GitHub
d3c44ebc 950e2e5f

+5 -4
+3 -1
src/components/moderation/PostHider.tsx
··· 114 114 <desc.icon size="sm" fill={t.atoms.text_contrast_medium.color} /> 115 115 </View> 116 116 </Pressable> 117 - <Text style={[t.atoms.text_contrast_medium, a.flex_1]} numberOfLines={1}> 117 + <Text 118 + style={[t.atoms.text_contrast_medium, a.flex_1, a.leading_snug]} 119 + numberOfLines={1}> 118 120 {desc.name} 119 121 </Text> 120 122 {!modui.noOverride && (
+1 -2
src/view/com/post-thread/PostThread.tsx
··· 122 122 const serverTreeViewEnabled = serverPrefs?.lab_treeViewEnabled ?? false 123 123 const serverSortReplies = serverPrefs?.sort ?? 'hotness' 124 124 125 - // However, we also need these to work locally for PWI (without persistance). 125 + // However, we also need these to work locally for PWI (without persistence). 126 126 // So we're mirroring them locally. 127 127 const prioritizeFollowedUsers = serverPrioritizeFollowedUsers 128 128 const [treeViewEnabled, setTreeViewEnabled] = useState(serverTreeViewEnabled) ··· 566 566 ? MAINTAIN_VISIBLE_CONTENT_POSITION 567 567 : undefined 568 568 } 569 - // @ts-ignore our .web version only -prf 570 569 desktopFixedHeight 571 570 removeClippedSubviews={isAndroid ? false : undefined} 572 571 ListFooterComponent={
+1 -1
src/view/com/post-thread/PostThreadShowHiddenReplies.tsx
··· 51 51 <EyeSlash size="sm" fill={t.atoms.text_contrast_medium.color} /> 52 52 </View> 53 53 <Text 54 - style={[t.atoms.text_contrast_medium, a.flex_1]} 54 + style={[t.atoms.text_contrast_medium, a.flex_1, a.leading_snug]} 55 55 numberOfLines={1}> 56 56 {label} 57 57 </Text>