mirror of
https://github.com/open-webui/open-webui
synced 2025-06-26 18:26:48 +00:00
refac
This commit is contained in:
parent
417ba4980a
commit
c6580a2a02
@ -33,15 +33,14 @@
|
||||
clearTimeout(searchDebounceTimeout);
|
||||
}
|
||||
|
||||
if (query === '') {
|
||||
page = 1;
|
||||
chatList = null;
|
||||
if (query === '') {
|
||||
chatList = await getChatList(localStorage.token, page);
|
||||
} else {
|
||||
searchDebounceTimeout = setTimeout(async () => {
|
||||
page = 1;
|
||||
chatList = null;
|
||||
chatList = await getChatListBySearchText(localStorage.token, query, page);
|
||||
}, 100);
|
||||
}, 200);
|
||||
}
|
||||
|
||||
if ((chatList ?? []).length === 0) {
|
||||
|
Loading…
Reference in New Issue
Block a user