Bluesky app fork with some witchin' additions 💫
0
fork

Configure Feed

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

Fix handle collapse on Android (#5504)

authored by

Eric Bailey and committed by
GitHub
702dfa85 1ae7fa63

+9 -6
+9 -6
src/view/com/util/PostMeta.tsx
··· 11 11 import {sanitizeDisplayName} from '#/lib/strings/display-names' 12 12 import {sanitizeHandle} from '#/lib/strings/handles' 13 13 import {niceDate} from '#/lib/strings/time' 14 + import {isAndroid} from '#/platform/detection' 14 15 import {precacheProfile} from '#/state/queries/profile' 15 16 import {atoms as a, useTheme, web} from '#/alf' 16 17 import {WebOnlyInlineLinkText} from '#/components/Link' ··· 70 71 </View> 71 72 )} 72 73 <ProfileHoverCard inline did={opts.author.did}> 73 - <Text numberOfLines={1} style={[a.flex_shrink]}> 74 + <Text numberOfLines={1} style={[isAndroid ? a.flex_1 : a.flex_shrink]}> 74 75 <WebOnlyInlineLinkText 75 76 to={profileLink} 76 77 label={_(msg`View profile`)} ··· 102 103 </Text> 103 104 </ProfileHoverCard> 104 105 105 - <Text 106 - style={[a.text_md, t.atoms.text_contrast_medium]} 107 - accessible={false}> 108 - &middot; 109 - </Text> 106 + {!isAndroid && ( 107 + <Text 108 + style={[a.text_md, t.atoms.text_contrast_medium]} 109 + accessible={false}> 110 + &middot; 111 + </Text> 112 + )} 110 113 111 114 <TimeElapsed timestamp={opts.timestamp}> 112 115 {({timeElapsed}) => (