Skip to content

Commit

Permalink
fix: use cursor-pointer on retrieval chip
Browse files Browse the repository at this point in the history
  • Loading branch information
fontanierh committed Oct 3, 2023
1 parent 01d1552 commit 6802681
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion front/components/assistant/conversation/RetrievalAction.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,10 @@ export default function RetrievalAction({
</div>
<div className="row-span-1">
{retrievalAction.documents && (
<div onClick={() => setDocListVisible(!docListVisible)}>
<div
onClick={() => setDocListVisible(!docListVisible)}
className="cursor-pointer"
>
<Chip color="violet">
{retrievalAction.documents.length > 0
? RetrievedDocumentsInfo(retrievalAction.documents)
Expand Down

0 comments on commit 6802681

Please sign in to comment.