fix: 解决文件列表跳转每页条数限制不生效的问题 (#3570)

This commit is contained in:
zhengkunwang 2024-01-11 10:59:38 +08:00 committed by GitHub
parent d95ec29de3
commit ce3b841ca7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -499,11 +499,13 @@ const back = () => {
const jump = async (url: string) => {
const oldUrl = req.path;
const oldPageSize = req.pageSize;
// reset search params before exec jump
Object.assign(req, initData());
req.path = url;
req.containSub = false;
req.search = '';
req.pageSize = oldPageSize;
let searchResult = await searchFile();
globalStore.setLastFilePath(req.path);