version 0.3.0 #1

Merged
ari merged 22 commits from dev into main 2024-07-02 19:39:03 +00:00
2 changed files with 6 additions and 2 deletions
Showing only changes of commit 6953b49563 - Show all commits

View file

@ -65,7 +65,9 @@
<PostHeader post={post} />
<Body post={post} />
<footer class="post-footer">
<ReactionBar post={post} />
{#if post.reactions}
<ReactionBar post={post} />
{/if}
<ActionBar post={post} />
</footer>
</article>

View file

@ -43,7 +43,9 @@
<Body post={post} />
<footer class="post-footer">
<ReactionBar post={post} />
{#if post.reactions}
<ReactionBar post={post} />
{/if}
<ActionBar post={post} />
</footer>
</div>