We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 79ecd13 commit 46bc091Copy full SHA for 46bc091
src/Exceptionless.Web/ClientApp/src/lib/components/data-table/data-table-pagination.svelte
@@ -38,11 +38,11 @@
38
{/if}
39
<Button variant="outline" class="h-8 w-8 p-0" disabled={!$table.getCanPreviousPage()} on:click={() => $table.previousPage()}>
40
<span class="sr-only">Go to previous page</span>
41
- <IconChevronLeft class="mr-2 h-4 w-4" />
+ <IconChevronLeft class="h-4 w-4" />
42
</Button>
43
<Button variant="outline" class="h-8 w-8 p-0" disabled={!$table.getCanNextPage()} on:click={() => $table.nextPage()}>
44
<span class="sr-only">Go to next page</span>
45
- <IconChevronRight class="mr-2 h-4 w-4" />
+ <IconChevronRight class="h-4 w-4" />
46
47
</div>
48
0 commit comments