mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-06 16:38:43 +00:00
fix label keyerror
This commit is contained in:
parent
1ef26beeea
commit
5d19e72ab4
1 changed files with 1 additions and 1 deletions
|
@ -23,7 +23,7 @@ $if get('filter_cat') == "keyword":
|
||||||
<!--
|
<!--
|
||||||
$filter_items
|
$filter_items
|
||||||
-->
|
-->
|
||||||
$for cat in ["state", "tracker_host", "label"]:
|
$for cat in filter_items.keys():
|
||||||
<div class="title">$cat</div>
|
<div class="title">$cat</div>
|
||||||
<ul>
|
<ul>
|
||||||
$for value, count in filter_items[cat]:
|
$for value, count in filter_items[cat]:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue