We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60d134a commit e327ed1Copy full SHA for e327ed1
frontend/src/views/chat/ChatListContainer.vue
@@ -73,7 +73,9 @@ const _chatList = computed({
73
74
const computedChatList = computed<Array<ChatInfo>>(() => {
75
if (search.value && search.value.length > 0) {
76
- return filter(_chatList.value, (c) => includes(c.brief, search.value))
+ return filter(_chatList.value, (c) =>
77
+ includes(c.brief?.toLowerCase(), search.value?.toLowerCase())
78
+ )
79
} else {
80
return _chatList.value
81
}
0 commit comments