From 599075219f60a7aa08a875ad36e04e65e3079369 Mon Sep 17 00:00:00 2001 From: Yusur Princeps Date: Thu, 23 Oct 2025 15:43:00 +0200 Subject: [PATCH] add comment section stub --- src/lib/CommentSection.svelte | 16 ++++++++++++++++ src/lib/FeedPost.svelte | 2 +- src/lib/FullPost.svelte | 7 ++++--- src/lib/GuildAbout.svelte | 3 +-- src/lib/backend.ts | 9 +++++++++ 5 files changed, 31 insertions(+), 6 deletions(-) create mode 100644 src/lib/CommentSection.svelte diff --git a/src/lib/CommentSection.svelte b/src/lib/CommentSection.svelte new file mode 100644 index 0000000..9f6955a --- /dev/null +++ b/src/lib/CommentSection.svelte @@ -0,0 +1,16 @@ + + +{#if comments === null} + + + +{/if} \ No newline at end of file diff --git a/src/lib/FeedPost.svelte b/src/lib/FeedPost.svelte index a0b0d51..8b0f0aa 100644 --- a/src/lib/FeedPost.svelte +++ b/src/lib/FeedPost.svelte @@ -28,7 +28,7 @@ let { id, title, content = "", votes, my_vote, comment_count } = post;