this repo has no description

Posts and quotes are now a link

ari.express c1642d69 e9507880

verified
Changed files
+11 -2
src
+11 -2
src/lib/PostComponent.svelte
··· 17 17 <div id="postContent"> 18 18 <p>{post.text}</p> 19 19 {#if post.replyingUri} 20 - <p>Replying to: {post.replyingUri.repo}</p> 21 - {/if} 20 + <a 21 + href="https://deer.social/profile/{post.replyingUri.repo}/post/{post 22 + .replyingUri.rkey}">Replying to {post.replyingUri.repo}</a 23 + > 24 + {/if} 25 + {#if post.quotingUri} 26 + <a 27 + href="https://deer.social/profile/{post.quotingUri.repo}/post/{post 28 + .quotingUri.rkey}">Quoting {post.quotingUri.repo}</a 29 + > 30 + {/if} 22 31 {#if post.imagesCid} 23 32 <div id="imagesContainer"> 24 33 {#each post.imagesCid as imageLink}