refactor: Adjust the default page size for the file management list (#10225)

This commit is contained in:
2025-09-02 13:41:45 +08:00 committed by GitHub
parent 76933bc6ef
commit 592e315f21
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

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