Skip to content

Commit 97452ad

Browse files
committed
#117 Fixes the issue with updating the number of displayed items correctly
1 parent d9be328 commit 97452ad

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/components/Table/TablePagination.svelte

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
$: goToNextPageDisabled = !$hasNextPage;
6363
$: goToPreviousPageDisabled = !$hasPreviousPage;
6464
$: $pageSize = pageSizeDropdownValue;
65-
$: $pageCount, $pageIndex, $pageSize, (indexInformation = getIndexInfomationString());
65+
$: $pageCount, $pageIndex, $pageSize, itemCount, (indexInformation = getIndexInfomationString());
6666
</script>
6767

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

0 commit comments

Comments
 (0)