Merge pull request from Silverlan/patch-1

Fix incorrect condition for displaying new books section
This commit is contained in:
Dan Brown 2025-02-12 18:14:28 +00:00 committed by GitHub
commit 2291d78382
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -23,7 +23,7 @@
<div id="new" class="mb-xl">
<h5>{{ trans('entities.books_new') }}</h5>
@if(count($popular) > 0)
@if(count($new) > 0)
@include('entities.list', ['entities' => $new, 'style' => 'compact'])
@else
<p class="text-muted pb-l mb-none">{{ trans('entities.books_new_empty') }}</p>
@ -59,4 +59,4 @@
</div>
</div>
@stop
@stop