Show filter item if active items exist but are filtered out

This commit is contained in:
Tim Van Baak 2019-06-22 10:40:18 -07:00
parent 55c6630d15
commit 70a4a31fea
1 changed files with 1 additions and 1 deletions

View File

@ -80,7 +80,7 @@ def root():
}
active_items = [read_ex] + active_items
if active_items:
if total > 0:
# Create the feed control item
wl_minus = [make_query_link("only - {}".format(tag), [t for t in wl if t != tag], bl) for tag in wl]
wl_plus = [make_query_link("only + {}".format(tag), wl + [tag], bl) for tag in active_tags if tag not in wl]