feat: do not initiate requests when the RecursiveFolder is not open to speed up page loading

This commit is contained in:
Shirasawa 2025-10-09 15:57:50 +08:00 committed by GitHub
parent 5043e7fc8c
commit ccfb0f54e1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -385,7 +385,9 @@
}
};
$: setFolderItems(open);
$: if (open) {
setFolderItems();
}
const renameHandler = async () => {
console.log('Edit');