diff --git a/src/components/ChatComponents/ChatControls.tsx b/src/components/ChatComponents/ChatControls.tsx index c26d1ed9..327fccb6 100644 --- a/src/components/ChatComponents/ChatControls.tsx +++ b/src/components/ChatComponents/ChatControls.tsx @@ -7,10 +7,10 @@ import { Notice } from "obsidian"; import React, { useEffect, useState } from "react"; import { ChainType } from "@/chainFactory"; +import { TooltipActionButton } from "@/components/ChatComponents/TooltipActionButton"; import { stringToChainType } from "@/utils"; import * as DropdownMenu from "@radix-ui/react-dropdown-menu"; import { ChevronDown, Download, Puzzle, RefreshCw } from "lucide-react"; -import { TooltipActionButton } from "@/components/ChatComponents/TooltipActionButton"; interface ChatControlsProps { currentChain: ChainType; @@ -120,22 +120,22 @@ const ChatControls: React.FC = ({
- {currentChain === "llm_chain" && "Chat Mode"} - {currentChain === "vault_qa" && "Vault QA Mode (Basic)"} - {currentChain === "copilot_plus" && "Copilot Plus Mode (Alpha)"} + {currentChain === "llm_chain" && "chat"} + {currentChain === "vault_qa" && "vault QA (basic)"} + {currentChain === "copilot_plus" && "copilot plus (alpha)"} handleChainChange({ value: "llm_chain" })}> - Chat Mode + chat handleChainChange({ value: "vault_qa" })}> - Vault QA Mode (Basic) + vault QA (basic) handleChainChange({ value: "copilot_plus" })}> - Copilot Plus Mode (Alpha) + copilot plus (alpha) diff --git a/styles.css b/styles.css index 0857f321..4c1f5333 100644 --- a/styles.css +++ b/styles.css @@ -223,7 +223,7 @@ If your plugin does not need CSS, delete this file. border-radius: 4px; padding: 4px; font-size: 10px; - transform: translateX(18px); + transform: translateX(30px); } .model-select-content [role="menuitem"] { @@ -258,7 +258,7 @@ If your plugin does not need CSS, delete this file. border-radius: 4px; padding: 4px; font-size: 10px; - transform: translateX(-18px); + transform: translateX(-5px); } .chain-select-content [role="menuitem"] {