mirror of
https://github.com/khoj-ai/khoj.git
synced 2024-11-23 15:38:55 +01:00
Focus chat input on toggle research mode. v-align it with send button
This commit is contained in:
parent
2924909692
commit
94074b7007
1 changed files with 8 additions and 9 deletions
|
@ -556,20 +556,19 @@ export const ChatInputArea = forwardRef<HTMLTextAreaElement, ChatInputProps>((pr
|
|||
<TooltipTrigger asChild>
|
||||
<Button
|
||||
variant="ghost"
|
||||
className="float-right justify-center flex items-center p-0"
|
||||
onClick={() => setUseResearchMode(!useResearchMode)}
|
||||
className="float-right justify-center gap-1 flex items-center p-0 mr-2"
|
||||
onClick={() => {
|
||||
setUseResearchMode(!useResearchMode);
|
||||
chatInputRef?.current?.focus();
|
||||
}}
|
||||
>
|
||||
<span className="text-muted-foreground text-sm mr-1">
|
||||
Research Mode
|
||||
</span>
|
||||
<span className="text-muted-foreground text-sm">Research Mode</span>
|
||||
{useResearchMode ? (
|
||||
<ToggleRight
|
||||
className={`w-6 h-6 inline-block mr-1 ${props.agentColor ? convertColorToTextClass(props.agentColor) : convertColorToTextClass("orange")} rounded-full`}
|
||||
className={`w-6 h-6 inline-block ${props.agentColor ? convertColorToTextClass(props.agentColor) : convertColorToTextClass("orange")} rounded-full`}
|
||||
/>
|
||||
) : (
|
||||
<ToggleLeft
|
||||
className={`w-6 h-6 inline-block mr-1 rounded-full`}
|
||||
/>
|
||||
<ToggleLeft className={`w-6 h-6 inline-block rounded-full`} />
|
||||
)}
|
||||
</Button>
|
||||
</TooltipTrigger>
|
||||
|
|
Loading…
Reference in a new issue