mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-14 05:15:18 +00:00
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:
commit
43a2881074
1 changed files with 3 additions and 1 deletions
|
|
@ -385,7 +385,9 @@
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
$: setFolderItems(open);
|
$: if (open) {
|
||||||
|
setFolderItems();
|
||||||
|
}
|
||||||
|
|
||||||
const renameHandler = async () => {
|
const renameHandler = async () => {
|
||||||
console.log('Edit');
|
console.log('Edit');
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue