We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ad6ee6a commit 0d28f8aCopy full SHA for 0d28f8a
resources/js/Composables/usePaginatedData.ts
@@ -108,7 +108,6 @@ export function usePaginatedData(
108
}
109
110
function reset() {
111
- window.history.replaceState(null, '', window.location.pathname);
112
filters.value = defaultFilters;
113
sorting.value = {
114
field: '',
@@ -118,9 +117,7 @@ export function usePaginatedData(
118
117
page: 1,
119
rows: initialsRows,
120
};
121
- router.reload({
122
- only: ['request', ...new Set(only)],
123
- });
+ fetchData();
124
125
126
function parseUrlFilterValues() {
0 commit comments