mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-12-29 19:40:32 +00:00
Re-adds hiding book in reviews feed
This commit is contained in:
parent
81e207dcf8
commit
0c9dff61ca
1 changed files with 3 additions and 1 deletions
|
@ -20,7 +20,8 @@
|
|||
{% endif %}
|
||||
</div>
|
||||
|
||||
{% if status.book or status.mention_books.count %}
|
||||
{% if not hide_book %}
|
||||
{% if status.book or status.mention_books.count %}
|
||||
<div class="{% if status.status_type != 'GeneratedNote' %}box{% endif %}">
|
||||
{% if status.book %}
|
||||
{% include 'snippets/book_preview.html' with book=status.book %}
|
||||
|
@ -29,3 +30,4 @@
|
|||
{% endif %}
|
||||
</div>
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
|
|
Loading…
Reference in a new issue