intelliwaketssveltekitv25 0.1.165 → 0.1.166
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/Paginator.svelte +1 -6
- package/package.json +1 -1
package/dist/Paginator.svelte
CHANGED
|
@@ -108,12 +108,7 @@
|
|
|
108
108
|
if (ToArray(invalidate).some(inv => inv === 'All')) gotoSettings.invalidateAll = true
|
|
109
109
|
else gotoSettings.invalidate = ToArray(invalidate)
|
|
110
110
|
}
|
|
111
|
-
if (display.page
|
|
112
|
-
if (currentValue) {
|
|
113
|
-
pageState.url.searchParams.delete(queryParamName)
|
|
114
|
-
goto(pageState.url, gotoSettings)
|
|
115
|
-
}
|
|
116
|
-
} else if (display.page !== currentValue) {
|
|
111
|
+
if (display.page !== currentValue) {
|
|
117
112
|
pageState.url.searchParams.set(queryParamName, display.page.toString())
|
|
118
113
|
goto(pageState.url, gotoSettings)
|
|
119
114
|
}
|