From 2832ed9770a27904c4d58f69c5035e69b7461c81 Mon Sep 17 00:00:00 2001 From: ari melody Date: Fri, 21 Jun 2024 07:36:45 +0100 Subject: [PATCH] add post visibility indicators to replies and boosts --- src/post/BoostContext.svelte | 3 +++ src/post/ReplyContext.svelte | 3 +++ 2 files changed, 6 insertions(+) diff --git a/src/post/BoostContext.svelte b/src/post/BoostContext.svelte index f268113..dc4be4a 100644 --- a/src/post/BoostContext.svelte +++ b/src/post/BoostContext.svelte @@ -14,6 +14,9 @@ + {#if post.visibility !== "public"} + ({post.visibility}) + {/if} diff --git a/src/post/ReplyContext.svelte b/src/post/ReplyContext.svelte index 9de6b96..497d2f1 100644 --- a/src/post/ReplyContext.svelte +++ b/src/post/ReplyContext.svelte @@ -30,6 +30,9 @@
+ {#if post.visibility !== "public"} + ({post.visibility}) + {/if}