[EVENT][AddFeedActions] Add bool param which denotes whether the feed is empty. [PLUGIN][NoteTypeFeedFilter] Don't show filters if the feed is empty

This commit is contained in:
2022-01-02 21:44:08 +00:00
committed by Diogo Peralta Cordeiro
parent d5a6fa924b
commit 8fa04bb47d
2 changed files with 30 additions and 28 deletions

View File

@@ -14,7 +14,7 @@
<h1>{{ page_title | trans }}</h1>
{% endif %}
<nav class="feed-actions">
{% for block in handle_event('AddFeedActions', app.request) %}
{% for block in handle_event('AddFeedActions', app.request, notes is defined and notes is not empty) %}
{{ block | raw }}
{% endfor %}
</nav>