forked from alemi/upub
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:
parent
f4f6bfc8d2
commit
268b90af58
1 changed files with 2 additions and 2 deletions
|
@ -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 />
|
||||
|
|
Loading…
Reference in a new issue