Fixes review/comment/quote tabs in create status form

This commit is contained in:
Mouse Reeve
2020-11-08 18:23:12 -08:00
parent 5c1ed4c9b4
commit b7f8055ede
3 changed files with 34 additions and 8 deletions

View File

@ -21,7 +21,7 @@
<ul>
{% for book in shelf.books %}
<li class="{% if shelf_counter == 1 and forloop.first %}is-active{% endif %}" data-id="tab-book-{{ book.id }}">
<label for="book-{{ book.id }}" onclick="tabChange(event)"><a>{% include 'snippets/book_cover.html' with book=book size="medium" %}</a></label>
<label for="book-{{ book.id }}" onclick="nestedTabChange(event)"><a>{% include 'snippets/book_cover.html' with book=book size="medium" %}</a></label>
</li>
{% endfor %}
</ul>