fix(web): show tags even in replies

it's a bit annoying in lemmy threads because every reply has audience
tag but we cant assume every post will have it, so its still interesting
to show (for example, to distinguish replies from mastodon which may not
get broadcasted)
This commit is contained in:
əlemi 2024-07-06 03:48:04 +02:00
parent f4f6bfc8d2
commit 268b90af58
Signed by: alemi
GPG key ID: A4895B84D311642C

View file

@ -157,8 +157,8 @@ pub fn Object(
</table>
{post}
<div class="mt-s ml-1 rev">
{if !reply { Some(hashtag_badges) } else { None }}
{if !reply { audience_badge } else { None }}
{hashtag_badges}
{audience_badge}
<span style="white-space:nowrap">
<ReplyButton n=comments target=oid.clone() />
<LikeButton n=likes liked=already_liked target=oid.clone() author=author_id private=!public />