tangled
alpha
login
or
join now
witchcraft.systems
/
pds-dash
15
fork
atom
this repo has no description
15
fork
atom
overview
issues
pulls
pipelines
Posts and quotes are now a link
ari.express
10 months ago
c1642d69
e9507880
verified
This commit was signed with the committer's
known signature
.
ari.express
SSH Key Fingerprint:
SHA256:j4xpQafvRcIH4rwZqM5aREIogWsCjyYohia7vH0+uZY=
+11
-2
1 changed file
expand all
collapse all
unified
split
src
lib
PostComponent.svelte
+11
-2
src/lib/PostComponent.svelte
···
17
17
<div id="postContent">
18
18
<p>{post.text}</p>
19
19
{#if post.replyingUri}
20
20
-
<p>Replying to: {post.replyingUri.repo}</p>
21
21
-
{/if}
20
20
+
<a
21
21
+
href="https://deer.social/profile/{post.replyingUri.repo}/post/{post
22
22
+
.replyingUri.rkey}">Replying to {post.replyingUri.repo}</a
23
23
+
>
24
24
+
{/if}
25
25
+
{#if post.quotingUri}
26
26
+
<a
27
27
+
href="https://deer.social/profile/{post.quotingUri.repo}/post/{post
28
28
+
.quotingUri.rkey}">Quoting {post.quotingUri.repo}</a
29
29
+
>
30
30
+
{/if}
22
31
{#if post.imagesCid}
23
32
<div id="imagesContainer">
24
33
{#each post.imagesCid as imageLink}