Skip to content

Commit

Permalink
➕ Add missing types to list pagination
Browse files Browse the repository at this point in the history
  • Loading branch information
devmount committed Aug 7, 2024
1 parent b8e84ab commit e0964d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/src/elements/ListPagination.vue
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const next = () => {
emit('update', currentPage.value);
}
};
const goto = (index) => {
const goto = (index: number) => {
currentPage.value = index;
emit('update', currentPage.value);
};
Expand Down

0 comments on commit e0964d0

Please sign in to comment.