From 7f5bfc04b30e8c3ca690660f8cfad37242769ea7 Mon Sep 17 00:00:00 2001 From: spikecodes <19519553+spikecodes@users.noreply.github.com> Date: Fri, 20 May 2022 22:42:05 -0700 Subject: [PATCH] Always show Feeds dropdown (Fixes #408) --- templates/utils.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/templates/utils.html b/templates/utils.html index 0e22900..e4c6f75 100644 --- a/templates/utils.html +++ b/templates/utils.html @@ -38,7 +38,6 @@ {%- endmacro %} {% macro sub_list(current) -%} -{% if prefs.subscriptions.len() > 0 %}
Feeds
@@ -46,13 +45,14 @@ Home Popular All -

REDDIT FEEDS

- {% for sub in prefs.subscriptions %} - {{ sub }} - {% endfor %} + {% if prefs.subscriptions.len() > 0 %} +

REDDIT FEEDS

+ {% for sub in prefs.subscriptions %} + {{ sub }} + {% endfor %} + {% endif %}
-{% endif %} {%- endmacro %} {% macro render_hls_notification(redirect_url) -%}