diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-06-14 00:41:12 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-06-13 16:41:12 -0500 |
commit | ed9691511beb26bdb799bbcb9a973a8b8df3433c (patch) | |
tree | d36687f42ed488a7079028abf3f81529887d1fd0 /src/view/com/posts | |
parent | 7cd607f523b715bdea4b01d9203610e764b4fbe3 (diff) | |
download | voidsky-ed9691511beb26bdb799bbcb9a973a8b8df3433c.tar.zst |
Hover card on anchor displayName/handle (#8479)
* add hover to anchor display name / handle * use newer link component * Wrap using a single hover element --------- Co-authored-by: Eric Bailey <git@esb.lol>
Diffstat (limited to 'src/view/com/posts')
-rw-r--r-- | src/view/com/posts/PostFeedItem.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/com/posts/PostFeedItem.tsx b/src/view/com/posts/PostFeedItem.tsx index a5a7a777e..6755f013d 100644 --- a/src/view/com/posts/PostFeedItem.tsx +++ b/src/view/com/posts/PostFeedItem.tsx @@ -368,7 +368,7 @@ let FeedItemInner = ({ ) : ( <Trans> Reposted by{' '} - <ProfileHoverCard inline did={reason.by.did}> + <ProfileHoverCard did={reason.by.did}> <TextLinkOnWebOnly type="sm-bold" style={pal.textLight} @@ -607,7 +607,7 @@ function ReplyToLabel({ label = ( <Trans context="description"> Reply to{' '} - <ProfileHoverCard inline did={profile.did}> + <ProfileHoverCard did={profile.did}> <TextLinkOnWebOnly type="md" style={pal.textLight} |