diff options
author | rubenwardy <rw@rubenwardy.com> | 2020-07-10 23:18:40 +0100 |
---|---|---|
committer | rubenwardy <rw@rubenwardy.com> | 2020-07-10 23:18:40 +0100 |
commit | c80ff2e709f974c49eb346e274e6d48fec3763b6 (patch) | |
tree | 1948c8b6c4d57d778f5074b0b7e20fe30d195103 | |
parent | 2181e57e428504ee5b8b150fb4aac2b915b7d106 (diff) | |
download | cheatdb-c80ff2e709f974c49eb346e274e6d48fec3763b6.tar.xz |
Fix empty view in thread lists
-rw-r--r-- | app/templates/macros/threads.html | 2 |
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 %} |