Skip to content

Commit

Permalink
Merge pull request #9375 from ralphjsmit/rjs/small-fix
Browse files Browse the repository at this point in the history
Tiny fix in pagination dropdown PR
  • Loading branch information
danharrin authored Oct 30, 2023
2 parents 7ccd3f1 + b46cb12 commit 3f3440c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ class="fi-pagination-overview text-sm font-medium text-gray-700 dark:text-gray-2
</span>
@endif

@if ((count($pageOptions) > 1) && ($isSimple || $smallestPageOption || ($paginator->total() > $smallestPageOption)))
@if ((count($pageOptions) > 1) && ($isSimple || (! $smallestPageOption) || ($paginator->total() > $smallestPageOption)))
<div class="col-start-2 justify-self-center">
<label class="fi-pagination-records-per-page-select fi-compact">
<x-filament::input.wrapper>
Expand Down

0 comments on commit 3f3440c

Please sign in to comment.