Skip to content

Commit

Permalink
fix(editor): Fix page size resetting when filters are reset on workfl…
Browse files Browse the repository at this point in the history
…ows page (#13265)
  • Loading branch information
MiloradFilipovic authored Feb 17, 2025
1 parent 6377635 commit b4380d0
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -362,9 +362,8 @@ const resetFilters = async () => {
filtersModel.value[key] = Array.isArray(filtersModel.value[key]) ? [] : '';
});
// Reset the pagination
// Reset the current page
await setCurrentPage(1);
await setRowsPerPage(props.customPageSize);
resettingFilters.value = true;
hasFilters.value = false;
Expand Down

0 comments on commit b4380d0

Please # to comment.