Fix visual consistency of 'reply to' in post and use display name
parent
e5e31e5fe2
commit
c659f0ef9f
|
@ -173,8 +173,8 @@ export const Post = observer(function Post({
|
||||||
<UserInfoText
|
<UserInfoText
|
||||||
type="body2"
|
type="body2"
|
||||||
did={replyAuthorDid}
|
did={replyAuthorDid}
|
||||||
|
attr="displayName"
|
||||||
style={[pal.textLight]}
|
style={[pal.textLight]}
|
||||||
prefix="@"
|
|
||||||
/>
|
/>
|
||||||
</Link>
|
</Link>
|
||||||
</View>
|
</View>
|
||||||
|
|
|
@ -187,17 +187,17 @@ export const FeedItem = observer(function ({
|
||||||
<FontAwesomeIcon
|
<FontAwesomeIcon
|
||||||
icon="reply"
|
icon="reply"
|
||||||
size={9}
|
size={9}
|
||||||
style={[{color: pal.colors.text}, s.mr5]}
|
style={[{color: pal.colors.textLight}, s.mr5]}
|
||||||
/>
|
/>
|
||||||
<Text type="caption" style={[pal.textLight, s.mr2]}>
|
<Text type="body2" style={[pal.textLight, s.mr2]}>
|
||||||
Reply to
|
Reply to
|
||||||
</Text>
|
</Text>
|
||||||
<Link href={replyHref} title="Parent post">
|
<Link href={replyHref} title="Parent post">
|
||||||
<UserInfoText
|
<UserInfoText
|
||||||
type="caption"
|
type="body2"
|
||||||
did={replyAuthorDid}
|
did={replyAuthorDid}
|
||||||
|
attr="displayName"
|
||||||
style={[pal.textLight]}
|
style={[pal.textLight]}
|
||||||
prefix="@"
|
|
||||||
/>
|
/>
|
||||||
</Link>
|
</Link>
|
||||||
</View>
|
</View>
|
||||||
|
|
Loading…
Reference in New Issue