Fix bugs with 0.10.0, update changelog

This commit is contained in:
Prospector
2025-07-05 11:33:21 -07:00
parent 0030f35d0c
commit ece8a07486
7 changed files with 37 additions and 13 deletions

View File

@@ -220,7 +220,7 @@ async function refreshSearch() {
}
}
results.value = rawResults.result
currentPage.value = Math.min(pageCount.value, currentPage.value)
currentPage.value = Math.max(1, Math.min(pageCount.value, currentPage.value))
const persistentParams: LocationQuery = {}