Merge pull request #18179 from ShirasawaSama/patch-35

feat: do not initiate requests when the RecursiveFolder is not open to speed up page loading
This commit is contained in:
Tim Jaeryang Baek 2025-10-09 17:13:45 -05:00 committed by GitHub
commit 43a2881074
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 () => { const renameHandler = async () => {
console.log('Edit'); console.log('Edit');