mirror of
https://github.com/NovaOSS/nova-betterchat.git
synced 2024-11-25 22:34:00 +01:00
fix: chat filter
This commit is contained in:
parent
12e82070ab
commit
4a9efaf7da
|
@ -44,7 +44,7 @@ const ChatHistoryList = () => {
|
||||||
if (
|
if (
|
||||||
!chat.title.toLocaleLowerCase().includes(filterLowerCase) &&
|
!chat.title.toLocaleLowerCase().includes(filterLowerCase) &&
|
||||||
!chat.folder?.toLowerCase().includes(filterLowerCase) &&
|
!chat.folder?.toLowerCase().includes(filterLowerCase) &&
|
||||||
index !== currentChatIndex
|
index !== useStore.getState().currentChatIndex
|
||||||
)
|
)
|
||||||
return;
|
return;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue