mirror of
https://github.com/open-webui/open-webui.git
synced 2025-12-11 20:05:19 +00:00
refac
This commit is contained in:
parent
ea18ffdade
commit
3251f8b14d
2 changed files with 4 additions and 4 deletions
|
|
@ -737,8 +737,9 @@
|
|||
createFolder();
|
||||
}}
|
||||
onAddLabel={$i18n.t('New Folder')}
|
||||
on:change={(e) => {
|
||||
on:change={async (e) => {
|
||||
selectedFolder.set(null);
|
||||
await goto('/');
|
||||
}}
|
||||
on:import={(e) => {
|
||||
importChatHandler(e.detail);
|
||||
|
|
|
|||
|
|
@ -426,10 +426,9 @@
|
|||
renameHandler();
|
||||
}}
|
||||
on:click={async (e) => {
|
||||
await goto('/');
|
||||
|
||||
selectedFolder.set(folders[folderId]);
|
||||
if ($chatId) {
|
||||
await goto('/');
|
||||
}
|
||||
}}
|
||||
>
|
||||
<div class="text-gray-300 dark:text-gray-600">
|
||||
|
|
|
|||
Loading…
Reference in a new issue