mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-13 04:45:19 +00:00
feat: do not initiate requests when the RecursiveFolder is not open to speed up page loading
This commit is contained in:
parent
5043e7fc8c
commit
ccfb0f54e1
1 changed files with 3 additions and 1 deletions
|
|
@ -385,7 +385,9 @@
|
|||
}
|
||||
};
|
||||
|
||||
$: setFolderItems(open);
|
||||
$: if (open) {
|
||||
setFolderItems();
|
||||
}
|
||||
|
||||
const renameHandler = async () => {
|
||||
console.log('Edit');
|
||||
|
|
|
|||
Loading…
Reference in a new issue