diff options
Diffstat (limited to 'src/view/com/post/Post.tsx')
-rw-r--r-- | src/view/com/post/Post.tsx | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/src/view/com/post/Post.tsx b/src/view/com/post/Post.tsx index 10f8048f0..d0df1b295 100644 --- a/src/view/com/post/Post.tsx +++ b/src/view/com/post/Post.tsx @@ -73,7 +73,17 @@ export const Post = observer(function Post({uri}: {uri: string}) { replyHref = `/profile/${urip.hostname}/post/${urip.rkey}` } const onPressReply = () => { - store.shell.openComposer({replyTo: {uri: item.uri, cid: item.cid}}) + store.shell.openComposer({ + replyTo: { + uri: item.uri, + cid: item.cid, + text: item.record.text as string, + author: { + handle: item.author.handle, + displayName: item.author.displayName, + }, + }, + }) } const onPressToggleRepost = () => { item |