Skip to content
This repository has been archived by the owner on Jul 10, 2024. It is now read-only.

Commit

Permalink
Fix Pager component's AlwaysShow parameter not having the desired eff…
Browse files Browse the repository at this point in the history
…ect (#100) #patch
  • Loading branch information
NetherGranite authored Apr 2, 2020
1 parent f5e2321 commit 4904be5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/BlazorTable/Components/Pager.razor
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@namespace BlazorTable

@if (AlwaysShow || (Table.TotalPages >= 1))
@if (AlwaysShow || (Table.TotalPages > 1))
{
<div class="d-flex justify-content-end">
<ul class="pagination">
Expand Down

0 comments on commit 4904be5

Please sign in to comment.