File tree Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Expand file tree Collapse file tree 2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -64,21 +64,21 @@ function Messages({
6464 { message . content }
6565 </ Markdown >
6666 { message . role === "assistant" && message . queryId && (
67- < div className = "not-content ml-4 flex gap-2 self-start" >
67+ < div className = "not-content flex gap-2 self-start" >
6868 { feedbackGiven . has ( message . queryId ) ? (
6969 < span > Thanks for your feedback!</ span >
7070 ) : (
7171 < >
7272 < button
7373 onClick = { ( ) => handleFeedback ( message . queryId ! , true ) }
74- className = "rounded bg-transparent p-2"
74+ className = "cursor-pointer rounded bg-transparent p-2"
7575 title = "Thumbs up"
7676 >
7777 < MdOutlineThumbUp className = "size-6 hover:text-green-600" />
7878 </ button >
7979 < button
8080 onClick = { ( ) => handleFeedback ( message . queryId ! , false ) }
81- className = "rounded bg-transparent p-2"
81+ className = "cursor-pointer rounded bg-transparent p-2"
8282 title = "Thumbs down"
8383 >
8484 < MdOutlineThumbDown className = "size-6 hover:text-red-600" />
Original file line number Diff line number Diff line change 11---
2- title : Support AI
2+ title : Support AI (Beta)
33tableOfContents : false
44sidebar :
55 order : 8
6+ label : Support AI
7+ badge : Beta
68---
79
810import SupportAI from " ~/components/SupportAI.tsx" ;
You can’t perform that action at this time.
0 commit comments