fix: broken infinite query on files.vue (#5133)

This commit is contained in:
Calum H.
2026-01-16 09:03:56 +00:00
committed by GitHub
parent 75c5316dc3
commit 1ea96df00e
3 changed files with 11 additions and 4 deletions

View File

@@ -237,7 +237,7 @@ function navigateToFolder() {
const newPath = currentPath.endsWith('/')
? `${currentPath}${props.name}`
: `${currentPath}/${props.name}`
router.push({ query: { path: newPath, page: 1 } })
router.push({ query: { path: newPath } })
}
const isNavigating = ref(false)