aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrubenwardy <rw@rubenwardy.com>2020-07-10 23:18:40 +0100
committerrubenwardy <rw@rubenwardy.com>2020-07-10 23:18:40 +0100
commitc80ff2e709f974c49eb346e274e6d48fec3763b6 (patch)
tree1948c8b6c4d57d778f5074b0b7e20fe30d195103
parent2181e57e428504ee5b8b150fb4aac2b915b7d106 (diff)
downloadcheatdb-c80ff2e709f974c49eb346e274e6d48fec3763b6.tar.xz
Fix empty view in thread lists
-rw-r--r--app/templates/macros/threads.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/templates/macros/threads.html b/app/templates/macros/threads.html
index eeb28cc..5c3421a 100644
--- a/app/templates/macros/threads.html
+++ b/app/templates/macros/threads.html
@@ -101,6 +101,6 @@
{% endif %}
</a>
{% else %}
- <p>{% if list_group %}class="list-group-item"{% endif %}><i>No threads found</i></p>
+ <p class="list-group-item"><i>No threads found</i></p>
{% endfor %}
{% endmacro %}