Skip to content

Commit 46bc091

Browse files
committed
Fixed pager
1 parent 79ecd13 commit 46bc091

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Exceptionless.Web/ClientApp/src/lib/components/data-table/data-table-pagination.svelte

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,11 +38,11 @@
3838
{/if}
3939
<Button variant="outline" class="h-8 w-8 p-0" disabled={!$table.getCanPreviousPage()} on:click={() => $table.previousPage()}>
4040
<span class="sr-only">Go to previous page</span>
41-
<IconChevronLeft class="mr-2 h-4 w-4" />
41+
<IconChevronLeft class="h-4 w-4" />
4242
</Button>
4343
<Button variant="outline" class="h-8 w-8 p-0" disabled={!$table.getCanNextPage()} on:click={() => $table.nextPage()}>
4444
<span class="sr-only">Go to next page</span>
45-
<IconChevronRight class="mr-2 h-4 w-4" />
45+
<IconChevronRight class="h-4 w-4" />
4646
</Button>
4747
</div>
4848
</div>

0 commit comments

Comments
 (0)