浏览代码

fix: 12050 (#12109)

Co-authored-by: Xiaoba Yu <xb1823725853@gmail.com>
tags/0.15.0
XiaoBa 10 个月前
父节点
当前提交
9c3cf7b69a
没有帐户链接到提交者的电子邮件
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1
    1
      web/app/(commonLayout)/apps/hooks/useAppsQueryState.ts

+ 1
- 1
web/app/(commonLayout)/apps/hooks/useAppsQueryState.ts 查看文件

@@ -37,7 +37,7 @@ function useAppsQueryState() {
const syncSearchParams = useCallback((params: URLSearchParams) => {
const search = params.toString()
const query = search ? `?${search}` : ''
router.push(`${pathname}${query}`)
router.push(`${pathname}${query}`, { scroll: false })
}, [router, pathname])

// Update the URL search string whenever the query changes.

正在加载...
取消
保存