Skip to content

Commit f8fbef8

Browse files
authored
Merge pull request #187 from birdup000/Fix-Conversation-Search-Tasks
fix search on task conversation list
2 parents 8da96cd + 16dade0 commit f8fbef8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

app/tasks/page.tsx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -378,9 +378,10 @@ function ConversationSelector({
378378
.map((conversation) => (
379379
<CommandItem
380380
key={conversation.id}
381-
value={conversation.id}
381+
value={conversation.name}
382382
onSelect={() => handleSelect(conversation.id)}
383383
className="cursor-pointer"
384+
data-search={conversation.name}
384385
>
385386
<LuCheck
386387
className={cn(

0 commit comments

Comments
 (0)