refactor: Adjust the default page size for the file management list

This commit is contained in:
lan-yonghui 2025-09-02 11:08:40 +08:00
parent 0dc312db64
commit b661bb3970

View file

@ -799,7 +799,7 @@ const { searchableStatus, searchablePath, setSearchableInputRef, searchableInput
const paginationConfig = reactive({
cacheSizeKey: 'file-page-size',
currentPage: 1,
pageSize: Number(localStorage.getItem('file-page-size')) || 10,
pageSize: Number(localStorage.getItem('file-page-size')) || 100,
total: 0,
});