Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Include feedContext in DOM as data- (#4206)

authored by

dan and committed by
GitHub
fa039e54 f7ee532a

+3 -1
+2 -1
src/view/com/posts/FeedItem.tsx
··· 196 196 href={href} 197 197 noFeedback 198 198 accessible={false} 199 - onBeforePress={onBeforePress}> 199 + onBeforePress={onBeforePress} 200 + dataSet={{feedContext}}> 200 201 <View style={{flexDirection: 'row', gap: 10, paddingLeft: 8}}> 201 202 <View style={{width: 52}}> 202 203 {isThreadChild && (
+1
src/view/com/util/Link.tsx
··· 45 45 hoverStyle?: StyleProp<ViewStyle> 46 46 noFeedback?: boolean 47 47 asAnchor?: boolean 48 + dataSet?: Object | undefined 48 49 anchorNoUnderline?: boolean 49 50 navigationAction?: 'push' | 'replace' | 'navigate' 50 51 onPointerEnter?: () => void