File tree Expand file tree Collapse file tree 3 files changed +3
-2
lines changed
packages/ui/src/components Expand file tree Collapse file tree 3 files changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -32,6 +32,7 @@ const ChatInputControls = ({
3232 size = "icon"
3333 className = "transform rounded-[10px] h-8 w-8 focus-visible:ring-1 focus-visible:ring-offset-1"
3434 onClick = { handleSendMessage }
35+ aria-label = { isGeneratingResponse ? "Stop generating" : "Send message" }
3536 >
3637 { isGeneratingResponse ? < StopCircleIcon /> : < ArrowUpIcon /> }
3738 </ Button >
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ const ChatInput = ({ chatHelpers }: ChatInputProps) => {
1313 const [ input , setInput ] = useState < string > ( "" ) ;
1414
1515 return (
16- < div className = "fixed bottom-0 left-0 right-0 bg-background py-4" >
16+ < div className = "fixed bottom-0 left-0 right-0 bg-background py-4 z-10 " >
1717 < div className = "max-w-3xl mx-auto w-full px-4" >
1818 < div className = "flex flex-col bg-secondary rounded-[10px]" >
1919 < ChatInputArea
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ export const markdownComponents: Partial<Components> = {
1919 } ,
2020 ul : ( { children, ...props } ) => {
2121 return (
22- < ul className = "list-decimal list-outside ml-4" { ...props } >
22+ < ul className = "list-disc list-outside ml-4" { ...props } >
2323 { children }
2424 </ ul >
2525 ) ;
You can’t perform that action at this time.
0 commit comments