Skip to content

Commit

Permalink
#117 Fixes the issue with updating the number of displayed items corr…
Browse files Browse the repository at this point in the history
…ectly
  • Loading branch information
zxyctn committed Jan 10, 2025
1 parent d9be328 commit 97452ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/components/Table/TablePagination.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
$: goToNextPageDisabled = !$hasNextPage;
$: goToPreviousPageDisabled = !$hasPreviousPage;
$: $pageSize = pageSizeDropdownValue;
$: $pageCount, $pageIndex, $pageSize, (indexInformation = getIndexInfomationString());
$: $pageCount, $pageIndex, $pageSize, itemCount, (indexInformation = getIndexInfomationString());
</script>

<div class="flex justify-between w-full items-stretch gap-10">
Expand Down

0 comments on commit 97452ad

Please sign in to comment.