Skip to content

Commit

Permalink
status labels in filter
Browse files Browse the repository at this point in the history
  • Loading branch information
arty-name committed Dec 20, 2024
1 parent d140620 commit bebc9d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/curator-actions/Pagination.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
export let activeButtonColor = 'text-white border border-white';
export let itemsPerPage = 10;
export let perPageOptions = [5, 10, 15, 20].map((value) => ({ value, label: value.toString() }));
let selectedItem = perPageOptions.filter(({ value }) => value === itemsPerPage)[0]
let selectedItem = perPageOptions.filter(({ value }) => value === itemsPerPage)[0];
$: pageNumbers = Array.from({ length: totalPages }, (_, i) => i + 1);
Expand Down

0 comments on commit bebc9d2

Please sign in to comment.