Prevent reply to from cascading (#610)
parent
0192923ef3
commit
19d6ded631
|
@ -235,15 +235,19 @@ const PostLoaded = observer(
|
||||||
size={9}
|
size={9}
|
||||||
style={[pal.textLight, s.mr5]}
|
style={[pal.textLight, s.mr5]}
|
||||||
/>
|
/>
|
||||||
<Text type="sm" style={[pal.textLight, s.mr2]} lineHeight={1.2}>
|
<Text
|
||||||
Reply to
|
|
||||||
</Text>
|
|
||||||
<UserInfoText
|
|
||||||
type="sm"
|
type="sm"
|
||||||
did={replyAuthorDid}
|
style={[pal.textLight, s.mr2]}
|
||||||
attr="displayName"
|
lineHeight={1.2}
|
||||||
style={[pal.textLight]}
|
numberOfLines={1}>
|
||||||
/>
|
Reply to{' '}
|
||||||
|
<UserInfoText
|
||||||
|
type="sm"
|
||||||
|
did={replyAuthorDid}
|
||||||
|
attr="displayName"
|
||||||
|
style={[pal.textLight]}
|
||||||
|
/>
|
||||||
|
</Text>
|
||||||
</View>
|
</View>
|
||||||
)}
|
)}
|
||||||
<ContentHider
|
<ContentHider
|
||||||
|
|
|
@ -221,15 +221,19 @@ export const FeedItem = observer(function ({
|
||||||
s.mr5,
|
s.mr5,
|
||||||
]}
|
]}
|
||||||
/>
|
/>
|
||||||
<Text type="md" style={[pal.textLight, s.mr2]} lineHeight={1.2}>
|
<Text
|
||||||
Reply to
|
|
||||||
</Text>
|
|
||||||
<UserInfoText
|
|
||||||
type="md"
|
type="md"
|
||||||
did={replyAuthorDid}
|
style={[pal.textLight, s.mr2]}
|
||||||
attr="displayName"
|
lineHeight={1.2}
|
||||||
style={[pal.textLight, s.ml2]}
|
numberOfLines={1}>
|
||||||
/>
|
Reply to{' '}
|
||||||
|
<UserInfoText
|
||||||
|
type="md"
|
||||||
|
did={replyAuthorDid}
|
||||||
|
attr="displayName"
|
||||||
|
style={[pal.textLight, s.ml2]}
|
||||||
|
/>
|
||||||
|
</Text>
|
||||||
</View>
|
</View>
|
||||||
)}
|
)}
|
||||||
<ContentHider
|
<ContentHider
|
||||||
|
|
Loading…
Reference in New Issue