Skip to content

Commit

Permalink
Bug fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
gruppler committed Dec 5, 2023
1 parent b07ffe5 commit 174b156
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@
const paginationParamKeys = [
"page",
"rowsPerPage",
"rowsNumber",
];
const setStateFromParams = () => {
const newSearchData: any = {};
Expand Down Expand Up @@ -153,8 +152,8 @@
pushState();
}
function setPagination() {
searchGames(pagination.value);
function setPagination(pagination: any) {
searchGames(pagination);
pushState();
}
Expand Down

0 comments on commit 174b156

Please sign in to comment.