tangled
alpha
login
or
join now
ptr.pet
/
bsky-repost-likes
2
fork
atom
its for when you want to get like notifications for your reposts
2
fork
atom
overview
issues
pulls
pipelines
feat: make user name / handle / did clickable link
ptr.pet
8 months ago
e3fea54b
532f7575
verified
This commit was signed with the committer's
known signature
.
ptr.pet
SSH Key Fingerprint:
SHA256:Abmvag+juovVufZTxyWY8KcVgrznxvBjQpJesv071Aw=
+10
-4
1 changed file
expand all
collapse all
unified
split
webapp
src
ActivityItem.tsx
+10
-4
webapp/src/ActivityItem.tsx
···
38
38
{props.data.liked ? "❤️" : "💔"}
39
39
</span>{" "}
40
40
{(profile && (
41
41
-
<span
41
41
+
<a
42
42
font-medium
43
43
+
href={`https://bsky.app/profile/${props.data.actor.did}`}
44
44
+
target="_blank"
45
45
+
hover:underline
43
46
text={`${props.isExtension ? "xs" : "sm"} gray-700`}
44
47
title={`@${profile!.handle}`}
45
48
>
···
49
52
(@{profile!.handle})
50
53
</span>
51
54
)}
52
52
-
</span>
55
55
+
</a>
53
56
)) || (
54
54
-
<span
57
57
+
<a
55
58
font-medium
59
59
+
href={`https://bsky.app/profile/${props.data.actor.did}`}
60
60
+
target="_blank"
61
61
+
hover:underline
56
62
text={`${props.isExtension ? "xs" : "sm"} gray-700`}
57
63
>
58
64
{props.data.actor.did}
59
59
-
</span>
65
65
+
</a>
60
66
)}{" "}
61
67
<span text-gray-800>{props.data.liked ? "liked" : "unliked"}</span>{" "}
62
68
<a