1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-07-22 17:18:37 +00:00

Untagged entries number removed from the filter's sidebar

This commit is contained in:
Simounet 2023-08-31 11:32:20 +02:00
parent ec4d23b584
commit 452362c17a
No known key found for this signature in database
GPG key ID: 77D3B7DC794EB770
2 changed files with 2 additions and 6 deletions

View file

@ -675,9 +675,6 @@ class EntryController extends AbstractController
} }
} }
$nbEntriesUntagged = $this->entryRepository
->countUntaggedEntriesByUser($this->getUser()->getId());
return $this->render( return $this->render(
'@WallabagCore/Entry/entries.html.twig', [ '@WallabagCore/Entry/entries.html.twig', [
'form' => $form->createView(), 'form' => $form->createView(),
@ -685,7 +682,6 @@ class EntryController extends AbstractController
'currentPage' => $page, 'currentPage' => $page,
'searchTerm' => $searchTerm, 'searchTerm' => $searchTerm,
'isFiltered' => $form->isSubmitted(), 'isFiltered' => $form->isSubmitted(),
'nbEntriesUntagged' => $nbEntriesUntagged,
] ]
); );
} }

View file

@ -118,9 +118,9 @@
<h4 class="center">{{ 'entry.filters.title'|trans }}</h4> <h4 class="center">{{ 'entry.filters.title'|trans }}</h4>
<div class="row"> <div class="row">
{% if current_route != 'untagged' and nbEntriesUntagged != 0 %} {% if current_route != 'untagged' %}
<div class="col s12 center-align"> <div class="col s12 center-align">
<a href="{{ path('untagged') }}">{{ 'tag.list.see_untagged_entries'|trans }} ({{ nbEntriesUntagged }})</a> <a href="{{ path('untagged') }}">{{ 'tag.list.see_untagged_entries'|trans }}</a>
</div> </div>
{% endif %} {% endif %}